Background Selector for Posted Meta
-
Hello WordPress CSS Gurus,
I have a question, about a piece of code that was auto-generated. I assume this is the case, as I had not added it in.
I’m wondering what the “none repeat scroll 0 0” part of this code does, just so I understand why it was added in and what purpose it serves.
.posted-meta {
background: #00aeef none repeat scroll 0 0;
border: .5px solid #00beef;
box-shadow: -10px 20px 20px #0F082F;
}Just soaking this all in! Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there,
This:
background: #00aeef none repeat scroll 0 0;Is short for this:
background-color: #00aeef; background-image: none; background-repeat: repeat; background-attachment: scroll; background-position: 0 0;Read this page to learn more:
http://www.w3schools.com/css/css_background.asp -
Thanks, Michael. Cool last name! An airbase in Cali shares that sir name. I appreciate the link, as well!
- The topic ‘Background Selector for Posted Meta’ is closed to new replies.