nested - SASS nesting for attribute selector -


i'm trying nest css selector find several id's und classes that's being generated drupal.

.wrapper, #wrapper {     [class^="starts-with-"] { ... } } 

but won't work expect to. output is

 .wrapper[class^="starts-with-"],  #wrapper[class^="starts-with-"] { ... } 

i'd expect select element in .wrapper , #wrapper

.wrapper [class^="starts-with-"], #wrapper [class^="starts-with-"] { ... } 


Comments

Popular posts from this blog

html - Outlook 2010 Anchor (url/address/link) -

javascript - Why does running this loop 9 times take 100x longer than running it 8 times? -

Getting gateway time-out Rails app with Nginx + Puma running on Digital Ocean -