Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Best practices for common css statements Re: Best practices for common css statements

#111320
sickdesigner
Member

I’d start by identifying which elements will have rounded corners throughout the entire site. If all button elements have rounded corners, then it’s natural to declare something like button{ border-radius: npx }. For any stray elements getting rounded corners, I’d select them individually, granted no common specific link them.

For added sanity, use a border-radius SASS mixin.