CSS
Articles and resources in the CSS category. A full list of categories is also available.
-
Why I prefer not to use CSS shorthand
Article posted 23rd December 2020 in CSS
Instead of using the
padding
declaration, I use the longhandpadding-top
,padding-right
, and so on. Why? A few of good reasons: let me explain. -
Form styling limitations are an accessibility issue
Article posted 27th November 2020 in Accessibility, CSS and Development
A summary of the things missing in CSS got me thinking about how lack of some form styling may have seriously damaged accessibility on the web
-
Accessibility issues when removing list markers
Article posted 12th October 2020 in Accessibility, CSS and Development
If we remove the list markers from an ordered or unordered list, we’re likely to run into some issues with VoiceOver.
-
Custom unordered list markers, done right
Article posted 8th October 2020 in CSS and Development
Did you know you can choose any icon you like for unordered/bulleted lists with a single line of CSS? Any Unicode character; no hacky CSS!
-
Styling list markers the right way
Article posted 7th October 2020 in CSS and Development
Simple list styling like changing the bullets’ colour has always felt like a hack, involving a lot of CSS. But now there’s a proper way to do it!
-
Styling underlines with CSS
Article posted 9th September 2020 in CSS, Design and Development
Never mind
border-bottom
for making your links a bit more visually engaging, here’s how to do it properly withtext-decoration
.