我在使用 CSS 将 Div 直接放在文本框下时遇到了一些问题。我需要直接在文本框下的 Div,最好只使用 CSS/CSS3 过渡。我已经尝试了我所知道的,但所有尝试似乎都失败了。如果有人可以帮助我,我会很高兴。
图 1 是我尝试放置 Div 的方式,图 2 是现在的方式:http: //i49.tinypic.com/2h31zjp.jpg
CSS:
input {
top:18px; left:20px;
width:1230px; padding:4px;
border:1px dashed grey;
font:16px arial;
font-weight:bold;
color:#d8d8d8;
}
input:focus+p {
height:200px;
}
p {
overflow:hidden;
height:0;
width:1230px;
background-color: transparent;
border:1px dashed gray;
transition:height.5s;
-moz-transition:height 0.5s;
-o-transition:height 0.5s;
-webkit-transition:height 0.5s;
}