Hi all,
I have a file that uses CSS and 4 gifs to created rounded corners on a white box, and viewing with a browser it works fine, but in Dreamweaver workview, the box area shows up black. I like to work in code, but the other people who will be editing it need to be able to see the text. Can you suggest any changes to make it show white? thanks in advance......Kathy
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.bl {background: url(images/bl.gif) 0 100% no-repeat #ffffff; width: 525px}
.br {background: url(images/br.gif) 100% 100% no-repeat}
.tl {background: url(images/tl.gif) 0 0 no-repeat}
.tr {background: url(images/tr.gif) 100% 0 no-repeat; padding:10px}
.clear {font-size: 1px; height: 1px}
body { background-color: #FFE4B1; }
</style>
</head>
<body>
<div class="bl"><div class="br"><div class="tl"><div class="tr">
<p>Trying Out a Headng
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit</p>
</div></div></div></div>
<div class="clear"> *-</div>
</body>
</html>