文字装饰不起作用

时间:2014-10-07 13:53:55

标签: css text text-decorations

所以我的代码是:

.bar {
 float: right;
 height: 283px;
 width: 567px;
 background: url('News.png');
 margin-top: 5%;
 margin-right: 21%;

}

.bar > #text {

margin-top: 6%;
margin-right: 10%;
margin-left: 6%;
width: 100%

.bar > #text > a {

text-decoration: none;
color: #000000;

}

我真的不知道为什么'文字装饰'不行,请帮助我,并提前致谢。

1 个答案:

答案 0 :(得分:4)

这条线没有关闭:

.bar > #text {

margin-top: 6%;
margin-right: 10%;
margin-left: 6%;
width: 100%

需要:

.bar > #text {

margin-top: 6%;
margin-right: 10%;
margin-left: 6%;
width: 100%

}