在下图中,我有一个圆角的表格,但如果你仔细观察,底角上有一些难看的重叠(某种白色的角)
我尝试在背景上使用更大的边框半径并移除背景,但看起来它不是背景而是元素本身,因为那没有做任何事情。
这是表单底部的 css 代码(按钮周围的灰色区域)
.formss #button_div{
clear:both;
height: 60px;
width: 100%;
border-top:1px solid #ddd;
margin-top:5px;
padding-top: 10px;
text-align:center;
background:rgba(51,51,51,0.8);
-moz-border-radius-bottomleft: 19px;
-moz-border-radius-bottomright: 19px;
-webkit-border-bottom-left-radius: 19px;
-webkit-border-bottom-right-radius: 19px;
border-bottom-left-radius: 19px;
border-bottom-right-radius: 19px;
}
我以前遇到过这个问题,我想我一直在做错事,但我不知道是什么。
编辑:jsFiddle --> http://jsfiddle.net/Z6pwR/4/
我不知道为什么文本输入超出了小提琴的形式