다시
봐야하겠다.쌀국수
를 먹었다.다시
봐야겠다.border-box
로 테두리가 포함된 크기를 지정<table border="1"> <tr> <th colspan="2">테이블 헤더</th> </tr> <tr> <td>셀1</td> <td>셀2</td> </tr> <tr> <td colspan="2">셀 병합</td> </tr> </table>
<table>
: 테이블을 감싸는 태그<tr>
: 한 행을 시작하는 태그<td>
: <tr>
태그 내에서 사용되며 셀을 나타내는 태그<th>
: "Table Heading" 의 줄임말로 <td>
태그 대신 쓸 수 있지만 가운데 정렬, bold가 자동으로 적용colspan
, rowspan
: 열 또는 행을 병합> Media Query
@media only screen and (max-width: 480px) { body { font-size: 12px; } }
> SCSS
$desktop: "screen and (min-width: 769px)"; @media #{$phone} { .big-box { display: none; } } @media #{$desktop} { .big-box { display: block; } }
@media
라는 문법으로 작성only screen
: 어떤 디바이스에 적용할지 알려주며 screen일 경우 디바이스에 상관 없이 화면에 보이는 스크린이면 모두 적용(max-width:)
: 어떤 조건 아래에서 css를 적용할지 작성> HTML 구조
<div class="content-wrap"> <img src="https://user-images.githubusercontent.com/61774575/95163201-34411c00-075c-11eb-9987-d6301acb4dab.png" alt=""> <div class="search-wrap"> <input type="text"> <i class="fas fa-search"></i> <i class="fas fa-keyboard"></i> <i class="fas fa-microphone"></i> </div> <div class="link-wrap"> <a href="">Weegle 검색</a> <a href="">I'm feeling Lucky</a> </div> <p class="support-summary"> Weegle 제공 서비스 : <a>English</a> </p> </div>
content-wrap
에 width
값을 주고 margin
으로 가운데 정렬text-align:center;
로 가운데 정렬search-wrap
은 position: relative;
<i>
태그들은 position: absolute;
로 절대 위치 지정<a>
태그는 인라인 요소로 상/하 margin
, padding
값을 못 가지므로 inline-block
으로 변경
승옥님
요로식구 오네가이시마스~~