I am having a little trouble figuring out how to turn on the grid visualization: https://github.com/Team-Sass/Singularity/wiki/Creating-Grids#visualizing-your-grids. Can someone point me to more help or share an example?
Is there an example or more documentation for how to do visualize the grid?
493 Views Asked by jmoughon At
1
There are 1 best solutions below
Related Questions in SINGULARITYGS
- nesting columns using grid-span vs. layout properly and background-grid
- mixing float-span() and grid-span() in same context?
- How to properly define containers in Singularity over different viewports
- Removing the last gutter on a row with Singularitygs?
- arranging user profiles with singularitygs
- How to set different widths for elements within the same container element in Singularity
- Singularity grid fixed gutters issue
- Singularity Grid-toggle
- Correct approach to clear row in singularitygs using isolation
- Having to re-declare global context?
- How to render a grid element in front or behind an overlapping sibling element using Singularity GS
- The grid-span function don't work with Singularitygs and Rails
- Warning from Compass when using Singularitygs
- Can Singularity.gs be used without the command line?
- Fixed width column in a singularity grid?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This can be found deep within the singularitygs Ruby gem:
Grid Overlay & Background
There are three ways you can display a grid:
Manually apply the background to the element
Add a switch to toggle an overlay -
@include grid-overlay('.container');
Toggle grid with JavaScript @include grid-toggle in an SCSS * { … } or html { … } element. Add [data-development-grid="show"] to item you want grid applied to Add "grid.js" to the HTML head
The first will apply a grid background to your container calculated using your grid settings, media breakpoints etc.
The second will add a switch to your page which allows you to view a grid overlay over your container (or if none is provided) by hovering over the switch. if you need your mouse for other things you can toggle the overlay on permanently by inspecting and checking :hover in your styles panel.
The third will allow you to toggle your background grid on and off by pressing the 'g' on your keyboard.
I couldn't get grid.js to work, so I rewrote it using a bit of jQuery. Here is my version:
// A working jQuery/javascript script for the hide/show grid
});
I find method 2 is rather neat. You get a symbol of 4 vertical bars in the bottom left of your webpage and the grid appears with mouseover. Similar to Susy's Home Page