如何增加标题的宽度以匹配整个页面宽度?

时间:2014-01-06 13:30:37

标签: html css

我的网页宽度超过100%。该页面是一个有很多行的数据表,我不想引入一个内部滚动条。现在我希望我的标题扩展宽度与我的溢出表一样。我该怎么做?

enter image description here

请注意我的标题是100%宽。我希望更多,并匹配非硬编码的数据表宽度。

1 个答案:

答案 0 :(得分:1)

在样式表中设置

html,body{
  width:100%; /* your remedy here */
  height:100%; /* your remedy here */
  margin:0 /* default set */
  padding:0; /* default set */
}