column-fill

Posted by & filed under C.

When you add height to a multi-column element, you can control how the content fills the columns. The content can be balanced or filled sequentially. ul { height: 300px; -webkit-columns: 3; -moz-columns: 3; columns: 3; -moz-column-fill: balance; column-fill: balance; } This property is only available in Firefox. Firefox will automatically balance content in a height-constrained

Continue reading →

column-count

Posted by & filed under C.

If you need an exact numbers of columns when designing a multi-column layout, use column-count. .lead { -webkit-column-count: 3; -moz-column-count: 3; column-count: 3; } Given the number of columns, the browser will evenly distribute the content in exactly that number of columns. This property can also be used in the shorthand for columns and can

Continue reading →

color

Posted by & filed under C.

The color property in CSS is specifically for controlling the color of text. p { color: green; } I’m an example of the above CSS taking effect on a specific paragraph. You can use any color value, for instance: #f00 #ff0000 rgb(100,100,100) rgba(100,100,100,0.5) hsl(20, 100%, 50%) hsla(20, 100%, 50%, 0.5) named colors The color property

Continue reading →

clip-path

Posted by & filed under C.

The clip-path property in CSS allows you to specify a specific region of an element to display, rather than showing the complete area. There used to be a clip property, but note that is deprecated. .clip-me { position: absolute; /* absolute or fixed positioning required */ /* deprecated version */ /* clip: rect(110px, 160px, 170px, 60px);

Continue reading →