Is it possible to override properties for a specific element with an ID using Foundation and Sass?
I need to customize the style of a <section id='myid'>
element by overriding certain properties:
#myid {
background: blue;
color: white;
}
Even though I tried adding these styles to a CSS file or the app.scss file, they are not being applied. The compiled file contains them, but they are being overridden by default settings.
What is the best way to ensure that these customized settings take precedence?