Write your style property the same way you would in a style sheet. But it needs to be all one line. Separate multiple properties with a semi-colon just as you would in a style sheet.
background:#ccc; color:#fff; border: solid black 1px;Place that line of styles inside the style attribute of the element you want styled.
Because of the cascade, inline styles have the highest precedence. That means they are going to be applied no matter what*. The only styles that have higher precedence than inline styles are user styles applied by the readers themselves. So if you are having trouble getting your changes to apply, you can set an inline style on the element and if it still doesn't display, you know there's something else going on.
Inline styles are easy and quick to add. You don't need to create a whole new document (as with external style sheets) or edit a new element in the head of your document (as with internal style sheets). You just add the style attribute that is valid on nearly every XHTML element.
Because they are the most specific in the cascade, they can over-ride things you didn't intend them to.
Inline styles must be applied to every element you want them on. So if you want all your paragraphs to have the font family “Arial” you have to add an inline style to each
tag in your document. This adds both maintenance work for the designer and download time for the reader.
It's impossible to style pseudo-elements and -classes with inline styles. For example, with external and internal style sheets, you can style the visited, hover, active, and link color of an anchor tag. But with an inline style all you can style is the link itself, because that's what the style attribute is attached to.
I recommend not
using inline styles for your web pages because they cause problems and make the pages a lot more work to maintain. The only time I use them is when I want to check a style quickly during development. Once I've got it looking right for that one element, I move it to my external style sheet.
*There are a few cases where an inline style can be over-ridden, such as with the !important attribute or with user style sheets. But with typical CSS usage, inline styles will have highest precedence.
View the original article here
No comments:
Post a Comment