Click to See Complete Forum and Search --> : blah blah blah dont worry about this


frankiisimone
04-19-2007, 08:02 PM
<HEAD>
<STYLE TYPE-"type/css">
<!--
BODY {background-image: http://i48.photobucket.com/albums/f204/frankzizzle93/frankiesimone-1.jpg; background-repeat: repeat-y; background-attachment: fixed; background-attachment: fixed}
A:link {color: #66FFCC}
A:visited {color: #00CC99}
H1 {text-align: left}
H2 {font-size: 10pt; font-family: verdana}
H3 {font-style: small caps}

-->
</STYLE>
</HEAD>

WebJoel
04-19-2007, 08:18 PM
Okaaaay... :confused:

David Harrison
04-19-2007, 08:26 PM
What?

And in any case:background-image: url(http://i48.photobucket.com/albums/f2...esimone-1.jpg);'background-image'
Value: <uri> | none | inheritValues for this property are either <uri>, to specify the image, or 'none', when no image is used.

Example(s):body { background-image: url("marble.png") }
p { background-image: none }URI values (Uniform Resource Identifiers, see [RFC3986], which includes URLs, URNs, etc) in this specification are denoted by <uri>. The functional notation used to designate URIs in property values is "url()", as in:body { background: url("http://www.example.com/pinkish.png") }The format of a URI value is 'url(' followed by optional whitespace followed by an optional single quote (') or double quote (") character followed by the URI itself, followed by an optional single quote (') or double quote (") character followed by optional whitespace followed by ')'. The two quote characters must be the same.

An example without quotes:li { list-style: url(http://www.example.com/redball.png) disc }In other words, use url() when specifying an address, quotes are optional.