Hi! I'm looking for 'best practices' advice concerning external style sheets.
When developing a webpage, I first keep my styles internally within the page HTML. Then I try to move most of the styles to an external style sheet(s). However, after moving the styles to the external sheet, priority conflicts occur affecting the webpage layout and I spend no end of time trying to debug the conflicts. After awhile, I give up and just move the styles back into the HTML file for the page, which defeats the purpose of the external sheet. It makes no sense to write code this way.
What is the 'best practices' way to proceed with the placement of CSS styles?
Appreciate any advice.