• Shaarli
  • Tag cloud
  • Picture wall
  • Daily
  • RSS
  • Login
4251 shaares
1 / 2
Filters
33 results tagged grid

Everything you should know about 8 point grid system in UX design

QRCode

The principle of 8pt Grid is that use multiples of 8 (8, 16, 24, 32, 40, 48, 56, etc.) to layout, dimensions, padding, and margin of elements.

https://uxplanet.org/everything-you-should-know-about-8-point-grid-system-in-ux-design-b69cb945b18d
June 24, 2025 at 2:35:19 PM EDT *
css webdesign grid
FILLER

Layout grids in the browser · Medienbäcker Thomas Günther

QRCode

A simple guide to building keyboard-activated layout grid overlays with JavaScript and CSS for web development projects.

https://medienbaecker.com/articles/layout-grids-in-the-browser
January 3, 2025 at 7:45:42 AM EST *
grid css webdesign layout
FILLER

SVG Coding Examples: Useful Recipes For Writing Vectors By Hand — Smashing Magazine

QRCode

Myriam Frisano explores the basics of hand-coding SVGs with practical examples to demystify the inner workings of common SVG elements. In this guide, you’ll learn about asking the right questions to solve common positioning problems and how to leverage JavaScript so that, by the end, you can add “SVG coding” to your toolbox. You’ll also be able to declare proudly, “I know how to draw literal pictures with words!”

https://www.smashingmagazine.com/2024/09/svg-coding-examples-recipes-writing-vectors-by-hand/
October 11, 2024 at 8:11:52 AM EDT *
svg grid
FILLER

CSS Grid Areas

QRCode

A fresh look at the CSS grid template areas and how to take advantage of its full potential today.

https://ishadeed.com/article/css-grid-area/
July 22, 2024 at 10:11:21 AM EDT *
css grid webdesign
FILLER

An Interactive Guide to CSS Grid

QRCode

CSS Grid is an incredibly powerful tool for building layouts on the web, but like all powerful tools, there's a significant learning curve. In this tutorial, we'll build a mental model for how CSS Grid works and how we can use it effectively. I'll share the biggest 💡 lightbulb moments I've had in my own learning journey.

https://www.joshwcomeau.com/css/interactive-guide-to-grid/
January 9, 2024 at 11:24:44 AM EST *
css grid webdesign
FILLER

CSS Grid Generator

QRCode

built with 🌮 by sarah_edo

You can set the numbers, and units of your columns and rows, and I'll generate a CSS grid for you! Drag within the boxes to create divs placed within the grid.

Though this project can get a basic layout started for you, this project is not a comprehensive tour of CSS Grid capabilities. It is a way for you to use CSS Grid features quickly.

https://cssgrid-generator.netlify.app/
December 23, 2022 at 11:22:51 AM EST *
css grid webdesign
FILLER

6+5 ways to make a two-column layout: from pretty reasonable to com­pletely wrong — Vadim Makeev

QRCode

Imagine you need to create a two-column layout. Yes, the simplest one: a column on the left, a column on the right, and some gap in-between. There’s an obvious modern solution for that:

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
https://pepelsbey.dev/articles/two-columns/
October 4, 2022 at 2:11:54 PM EDT *
webdesign grid css
FILLER

Why some designs look messy, and others don’t

QRCode

Meet the Extendabox-rule

The four strokes making up a box end at each intersection. But in our unconsciousness, every one of those lines draws out an imaginary line much further, through the entirety of your design.

A grid works the other way around: you define a set of columns, gutters, and rows to make up certain sections of your design, and you then position all of your objects onto that grid.

https://uxdesign.cc/why-some-designs-look-messy-and-others-dont-1755b8ce22ff
September 17, 2021 at 8:21:37 AM EDT *
grid webdesign design
FILLER

Responsive Grid Design: Ultimate Guide

QRCode

I find working with the grid helpful. The grid helps to maintain consistency across the different layouts and make faster design decisions. Grids give more precise control over alignments and layout on different screen sizes.

Fixed-Width Layout Grid Setup

To set up a fixed-width grid, we use fixed numeric value for gutters and columns. I recommend 74px wide columns, 32px wide gutters and 16px side margins on each side.

Mobile View

For mobile devices, we use a fluid grid where gutters and side margins have fixed numeric values. I recommend 16px wide gutters and 16px wide side margins on each side.
We can design mobile interfaces at 360×640 sized artboard.
Mobile devices have a small screen resolution. If we display the 12 separate columns, gutters, and side margins on such a small resolution, it becomes quite cumbersome to design at scale.

https://medium.muz.li/responsive-grid-design-ultimate-guide-7aa41ca7892
May 26, 2021 at 10:28:24 AM EDT *
webdesign grid
FILLER

Geometric composition - Programming Design Systems

QRCode

Programming Design Systems is a free digital book that teaches a practical introduction to the new foundations of graphic design.

Grids

https://programmingdesignsystems.com/layout/geometric-composition/
April 23, 2021 at 8:05:54 AM EDT *
grid design
FILLER

CSS Grid full-bleed layout tutorial · Josh W Comeau

QRCode

Back in the day, there was a gold-standard website layout that everyone strived to create, but that was notoriously difficult to get right…

I recently discovered an elegant solution to this problem using CSS Grid. In this post, we'll learn how it works!

https://joshwcomeau.com/css/full-bleed/
October 22, 2020 at 10:16:01 AM EDT *
css grid webdesign
FILLER

Modern CSS grid solutions to common layout problems

QRCode

Dynamic centered layout

We all know margin: 0 auto to center a layout. Ideal for article pages, right? But what if you want elements like images to exceed the maximum width of the article?

https://vycke.dev/blog/css-layout-patterns/
August 11, 2020 at 3:48:25 PM EDT *
css grid webdesign
FILLER

1-Line Layouts

QRCode

*10 Modern CSS layout and sizing techniques that highlight just how robust and impactful a single-line of styling code can be. [Watch the Video]

https://1linelayouts.glitch.me/
July 14, 2020 at 11:11:35 AM EDT *
css grid webdesign
FILLER

The Ultimate Guide To CSS Grid - JavaScript Teacher - Medium

QRCode

You are probably already familiar with CSS box model for regular elements. Let’s begin with a similar “bird’s eye view” representation for the CSS Grid:

https://medium.com/@js_tut/the-ultimate-guide-to-css-grid-2c5ba7b47356
May 14, 2020 at 9:46:45 AM EDT *
css grid
FILLER

Learn Box Alignment

QRCode

Are you ready to learn how box alignment works for CSS Grid and Flexbox? This article is for you.

https://ishadeed.com/article/learn-box-alignment/
March 7, 2020 at 7:50:59 PM EST *
flexbox grid css webdesign
FILLER

Understanding CSS Grid: Grid Lines — Smashing Magazine

QRCode

In the first article in this series, I took a look at how to create a grid container and the various properties applied to the parent element that make up your grid. Once you have a grid, you have a set of grid lines. In this article, you will learn how to place items against those lines by adding properties to the direct children of the grid container.

https://www.smashingmagazine.com/2020/01/understanding-css-grid-lines/
January 28, 2020 at 8:40:47 AM EST *
css grid
FILLER

Build a Classic Layout FAST in CSS Grid - YouTube

QRCode

For years, we've struggled to build resilient layouts on the web, but CSS Grid promises to change all that — and you can start using it now, with only a few properties and basic concepts. Learn how to build some previously-complex layouts in under 10 minutes, with only a few lines of code. Miriam Suzanne walks you through a practical demo.

https://www.youtube.com/watch?v=KOvGeFUHAC0&feature=youtu.be
October 29, 2019 at 11:03:25 AM EDT *
webdesign grid video
FILLER

Kadinsky Bauhaus in CSS Grid

QRCode
https://codepen.io/tatianamac/full/RzGexa
June 24, 2019 at 2:21:46 PM EDT *
css grid bauhaus inspiration
FILLER

How To Align Things In CSS — Smashing Magazine

QRCode

We have a whole selection of ways to align things in CSS today, and it isn’t always an obvious decision which to use. However, knowing what is available means that you can always try a few tactics if you come across a particular alignment problem.

https://www.smashingmagazine.com/2019/03/css-alignment/
April 26, 2019 at 9:22:22 AM EDT *
css webdesign flexbox grid
FILLER

Using CSS Grid the right way | hey it's violet

QRCode

Use names. Use frs. Don't use a grid system. Wait, what? 2.17.2019

https://vgpena.github.io/using-css-grid-the-right-way/
March 19, 2019 at 11:22:52 AM EDT *
css grid
FILLER
1 / 2
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community