• 회원가입
  • 로그인
  • 구글아이디로 로그인

[css] CSS - 인풋태그 높이통일 (= 동일높이 = 높이동일 = 높이같게 = 세로길이 똑같게 = 높이맞추기) INPUT TYPE TEXT SUBMIT HEIGHT EQAUL EQUAL

 

 

<style>

.input,

.submit {

    display: inline-block;

    padding: 10px 15px;

    font-size: 20px;

    border-radius: 0;

    -webkit-appearance: none;

}


.input {

    border: 1px solid lightgray;

}


.submit {

    background-color: lightgreen;

    border: 1px solid transparent;

}

.submit::-moz-focus-inner { 

    border: 0;

}

</style>

<form>

    <input class="input" type="search" placeholder="Search for...">

    <input class="submit" type="submit" value="Submit">

</form>

 

https://codepen.io/sinbi/pen/ZEYRqMw?editors=1100

※ 위 코드는 영문일 때만 적용.


분류 제목
border CSS - border-block-end-style 속성 - 블락방향 끝테두리 모양 지정 (= border-…
border CSS - border-block-end-width 속성 - 블락방향 끝테두리 너비(=두께) 지정 (= bo…
border CSS - border-block-start 속성 - 블락방향 시작테두리 스타일 일괄 지정 (= border…
border CSS - border-block-start-color 속성 -
border CSS - border-block-start-style 속성 - 블락방향 시작테두리 모양 지정 (= bord…
border CSS - border-block-start-width 속성 -
border CSS - border-block-style 속성 - 블락방향 테두리 모양 지정 (= border-block…
border CSS - border-block-width 속성 -
border CSS - border-end-end-radius 속성 -
border CSS - border-end-start-radius 속성 -
border CSS - border-inline 속성 -
border CSS - border-inline-color 속성 -
border CSS - border-inline-end 속성 -
border CSS - border-inline-end-color 속성 -
border CSS - border-inline-end-style 속성 -
border CSS - border-inline-end-width 속성 -
border CSS - border-inline-start 속성 -
border CSS - border-inline-start-color 속성 -
border CSS - border-inline-start-style 속성 -
border CSS - border-inline-start-width 속성 -
19/25
목록
찾아주셔서 감사합니다. Since 2012