작성일 : 14-06-21 15:32
|
[CSS] button 크기 변경
|
|
|
글쓴이 :
조형래
 조회 : 4,416
|
<div class="search" align="center">
<input type="text" class="orm-control search" name="q" id="q" placeholder="강남역 40만원">
<button class="btn" style="width:100px;height:31px;margin: 0 0 0 0px" type="submit" onclick="location='result.php'">검색</button>
</div>
#q {
float: center;
margin: 10px 0 0 15px;
position: relative;
}
#q:first-child {
-webkit-transition: all 0.2s ease-in 0.2s;
-moz-transition: all 0.2s ease-in 0.2s;
transition: all 0.2s ease-in 0.2s;
/* border-radius: 20px; */
width: 400px;
font-size: 0.9em;
padding: 6px 12px;
height: 20px;
margin: 30px;
}
#q:focus {
width: 420px;
border-color: #CCC;
}
|
|