我正在尝试从我的图例区域中删除背景线条和阴影。一旦我在legends属性中将背景设置为透明,我仍然可以看到这些线条。我的代码如下
HTML:
<fieldset>
<legend>text goes here</legend>
</fieldset>
CSS:
fieldset {
margin:20px;
padding:0 10px 10px;
border:1px solid #666;
border-radius:10px;
box-shadow:0 0 10px #666;
padding-top:10px;
}
legend {
margin: 0px 5px;
padding: 5px;
white-space: nowrap;
background: transparent ;
font-weight: bold;
font-size: 2em;
}
有关如何解决此问题的任何建议吗?
答案 0 :(得分:1)
这样就可以了解
fieldset {
border: 0;
}
答案 1 :(得分:0)
border
和box-shadow
位于fieldset
。只需添加以下内容即可:
fieldset{
border:0;
box-shadow: none;
}