在DW CS3里面一直不知道怎么布局这个界面好,建立框架结构怎么建立才合适,图片上下移动时是会变化的,左右移动时会有放大效果。界面网址如下:http://photo.blog.sina.com.cn/photo/4e721d91h8d963a874218

解决方案 »

  1.   

       你还是买些基础的CSS书籍看看8.
      

  2.   

    怎么布局跟你所用的编辑工具没有关系  建议先学习下HTML CSS等基础知识。
      

  3.   


    *{margin:0; padding:0;}
    body{font:12px;}
    #warp{width:960px;margin:0 auto;}
    #header{width:940px;margin:0 auto;background:#ccc;}
    #content{width:940px;margin:0 auto;background:#ccc;}
    #left{width:720px;background:#555; float:left;}
    #right{width:220px;background:#666; float:left;}
    #footer{width:940px;margin:0 auto;background:#ccc;}
    <div id="warp">
    <div id="header">header</div>
    <div id="content">
    <div id="left">left</div>
    <div id="right">right</div></div>
    <div id="footer">footer</div>
    </div>