Front End Developer

Text

Alternate Stylesheets

Reading the W3C HTML5 specification I have found something really interesting: alternate style sheets. This is just one of the three type of styles sheets a web document can be linked to: persistent, preferred and alternate.

Read More

Source: w3.org

Text

Today, I am working on the style of a navigation bar. It’s complicated to explain, but I need to select all the list elements of the unordered list but the last and the first ones via CSS.

I know I can use the :not(), :first-child and :last-child CSS3 selectors, but how could I use them for reaching my goal?

Read More