css请教大神!让字在线上,横线是用<hr>

2025-01-07 05:31:38
推荐回答(4个)
回答1:

.line{
border:0;
border-top:1px solid #D5D5D5;
}
你自己的HTML代码效果就是对的了,有时候没必要过于借助css,加了那些样式反而不对了

回答2:

.line{
width:200px;
height:30px;
line-height:30px;
border-bottom:solid 1px #D5D5D5;

}

姓名

张慧华

年龄

32

回答3:

让字在横线上,上面的字是固定的吗,不是用来输入的吗,如果是固定的,就简单了
html:

32
css:
span{ width:100px; display:block; border:1px solid #ccc; height:22px; line-height:22px; }
这样就可以了

回答4:

不会