css之min-width 和 inline-block

来源:互联网 发布:淘宝买家旺旺提取神器 编辑:程序博客网 时间:2024/06/10 13:38

大家可以试试看看有什么不同,这个蛮有意思的

<!--{style}-->

#test {
width:97%;
height:80px;
z-index:0;
position:relative;
text-indent:60px;
}
label {
background-color:#eeeeee;
display:inline-block;
min-width:60px;
position:relative;
z-index:1;
padding:2px;
top:27px;
}
#test:focus {
z-index:1;
text-indent:0px;
}

<!--{/style}-->

测试代码(测试的时候你可以修改display:inline;看看效果有与之前有什么变化 去掉width:97%;等测试完后总结一下你的css技术又提升一点了):

<p><label>评论</label><textarea id="test" rows="2"></textarea></p>


原创粉丝点击