我在使用 CSS 时遇到了一些问题。我编写了一个简单的文本框,单击它时会下拉一个 div,但它似乎不起作用。如果有人可以帮助我,我会很高兴的。
CSS:
input {
top:18px;
left:20px;
width:1230px;
padding:4px;
border:1px dashed #eeeeee;
font:16px arial;
font-weight:bold;
color:#d8d8d8;
}
input:focus {
height:200px;
}
div {
overflow:hidden;
padding:0;
margin:0;
height:0;
width:1230px;
border:1px dashed #eeeeee;
background-color:transparent;
transition:height.5s;
-moz-transition:height 0.5s;
-o-transition:height 0.5s;
-webkit-transition:height 0.5s;
}
body {
background-image:url('pic.bmp');
background-repeat:no-repeat;
}