html - CSS values not applying to elements -


i have css file meant theme page white on black, rather black on white.

body { background-color: black; } h1 h2 h3 h4 h5 h6 p {     color: white; } 

but reason color: white; not applying text elements on page, example @ https://jsfiddle.net/3abz7831/

things have tried:
client has access required files.
adding color individual element style works fine, i'd rather not.
changing in <head> sheet or moving body nothing.

separate elements comma:

h1, h2, h3, h4, h5, h6, p {     color: white; } 

and have add if want jumbotron white either

.jumbotron {     color: white; } 

Comments

Popular posts from this blog

sql server - Cannot query correctly (MSSQL - PHP - JSON) -

php - trouble displaying mysqli database results in correct order -

C++ Linked List -