发布时间:2023-12-31 01:39来源:www.sf1369.com作者:宇宇
处理得当的话,留白确实可以为网页设计带来大量的益处。不应减少网页设计中的留白,相反,应该增加网页中的负空间。一些知名的大众品牌已经在朝这个方向前进,更多的设计师们也在追随他们的脚步。
呵呵 这位兄弟啊。建议你丢弃frontpage 用Dreamweaver吧。
有一个办法就是把你的网页全部装到一个大的表格里。然后表格居中。
<style>
.top{width:100%;height:90px;background:#fff}
.top_center{width:1200px;height:90px;background:#000;margin:0 auto;}
</style>
<div class=top>
<div class=top_center>我是中间部分</div>
</div>
小知识:在写一个页面的摸一个区域的时候如果你不确定高度是多少的话,那么你就不需要设置高度,让高度自动;
做法:.top{width:100%;height: auto; overflow: hidden;}
留白能够帮助用户尽快的查找到所需要的信息,提高用户体验,赢得用户好感。
<style type=text/css>
body {text-align: center;}
#container {margin-left: auto;margin-right: auto;border: 1px solid red;width: 900px;text-align: left}
}
</style>
加上样式就好了啊