答案 0 :(得分:5)
风格不是很好。你要包括多个css并重新定义身体几次。 Read on how to write一个css然后把它弄干净。
答案 1 :(得分:1)
尝试以百分比设置宽度:
#wrapper { width: 100%; }
答案 2 :(得分:1)
您可以使用
<style type="text/css">
body{
width:90% /* or you can also set 900px*/
}
</style>
答案 3 :(得分:0)
你能添加(或修改)一些css文件吗?
如果是,则设置
.your_website_class {
width: your_width px !important;
}
答案 4 :(得分:0)
你的身体有这些
width: 1500px; // set appropriate width
height: 1600px; // remove this line
解决这些问题。