CSS:
.box {
background-image: url(relative/path/to/image.jpg);
height: 100px;
width: 100px;
}
HTML:
<div class="box"></div>
well its not really that I dont want people to take the pictures or anything but I want stuff like borders and other decretive stuff that are images that would be better if they weren't savable also I forgot to add I use dreamweaver CS4
This would be cumbersome, but you could make your site entirely Flash-based. Much harder to grab an image from a Flash movie than a CSS or HTML site.
well its not really that I dont want people to take the pictures or anything but I want stuff like borders and other decretive stuff that are images that would be better if they weren't savable also I forgot to add I use dreamweaver CS4
HTML:
<img src="relative/path/to/image.jpg" alt="Demo image" class="image" />
CSS:
div.image {
float: left;
border: 1px solid silver;
}
Please, don't. Flash is terrible, ...
Please, that's like saying "CSS is terrible." Flash is only terrible if someone uses it to program something terrible.