标签: css html5 tablelayout
这是我的问题:
在jsbin代码here中。我的右边隐藏着#wrapper的灰色边框。
#wrapper
但是这只发生在firefox中。 Chrome工作正常。
你能告诉我firefox的解决方法吗?
答案 0 :(得分:6)
请参阅此示例:http://jsbin.com/avupak/1/edit
相关CSS
width:100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box;
box-sizing: border-box;计算宽度,包括边框
box-sizing: border-box;
答案 1 :(得分:0)
仅将宽度设置为100%也可以。
width:100%;