怎样在DW中写div+css代码可以制作出如下的框架?
能否把具体代码写出来,多谢。
我不知道你的具体放什么位置 所以 里面有些参数你还要改一下 我大概的做了一下
html语言
<div id="kuang">
<h1>学术交流</h1>
<ul>
<li><span>文字文字文字</span></li>
<li>文字文字文字</li>
<li>文字文字文字</li>
<li>文字文字文字</li>
<li>文字文字文字</li>
<li>文字文字文字</li>
</ul>
<img src="images/eg_13.gif" width="36" height="8" /></div>
css样式
#kuang{ width:227px; margin:0 auto; border:solid 1px #999; overflow:hidden; margin-top:100px;}
h1{ background:url(../images/eg_03.gif) no-repeat; width:227px; height:30px; line-height:30px; font-size:14px; font-weight:bold; color:#FFF; text-indent:30px;}
#kuang ul{ width:220px; margin:0 auto; margin-top:10px;}
#kuang li{ line-height:22px; background:url(../images/eg_07.gif) no-repeat left center; text-indent:10px; border-bottom:dashed 1px #999;}
#kuang img{ margin:10px 0 10px 180px;}
#kuang span{ color:#F00; font-weight:bold;}