Mark

You wrote:

In our site, we want every image to assume this CSS

{
float:right;
padding-left:15px;
}


Is there a way to make every image put into the site to assume this definition by redefining the <img > tag

like

.img
{
float:right;
padding-left:15px;
}


That doesn't seem to work.

Thanks
Mark
dadwe...@me.com

Loose the dot in front of  img.

should be

img
{
float:right;
padding-left:15px;
}

hth

Jim Nannery
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to