<img alt="문자" src="http://www..">
<div class="bg-img">배경이미지</div>
.bg-img {
background-color: yellow;
background-image: url("https://www..");
}
.block-span {
display: block;
}
.inline-p {
display: inline-block;
}
.float-left {
float: left;
}
.float-right {
float: right;
}
.hide {
display: none;
}
<ol>
<li>List</li>
<li>Set</li>
<li>HashMap (Dictionary)</li>
<li>Queue</li>
<li>Stack</li>
<li>Tree</li>
<li>Sorting</li>
<li>Search</li>
</ol>
<!-- <ul> 숫자 없는 목록-->
li:first-child {
}
li:last-child {
}
li:nth-child(odd) {
}
li:nth-child(even) {
}
<table>
<tr>
<th></th>
<th>column 1</th>
<th>column 2</th>
</tr>
<tr>
<th>Row 1</th>
<td>Row 1, column 1</td>
<td>Row 1, column 2</td>
</tr>
<tr>
<th>Row w</th>
<td>Row 2, column 1</td>
<td>Row 2, column 2</td>
</tr>
</table>
<input type="text" placeholder="ID(필수)">
<input type="password" placeholder="비밀번호">
<input type="number" value="123456">
<textarea>소개:</textarea>
type="text"
text를 입력하는 속성입니다.
대부분의 input type은 text 입니다.
어느 텍스트나 입력할 수 있습니다.
이름, id, 주소, 닉네임 등을 입력 받을 때 사용합니다.
type="password"
text와 비슷한 속성인데, 뭔가를 입력하면 까만 원으로 나옵니다.
만약 화면을 공유하고 있다면, 남이 보지 않도록 처리한 것입니다.
화면에서는 안 보여도 JavaScript 쪽에서 무슨 값을 입력했는지 가져올 수 있습니다.
type="number"
숫자만 입력할 수 있습니다.
만약 type="number" 으로 핸드폰 번호를 받으려면 "-"는 입력할 수 없습니다.
placeholder
placeholder는 도움말을 넣어주는 부분입니다.
실제 input에 입력되어있는 텍스트가 아닙니다.
textarea처럼 input에도 미리 값을 세팅해놓고 싶을 수가 있죠.
그때는 value라는 attribute를 사용합니다.
button:hover {
cursor: pointer;
opacity: 0.8;
}/* 손가락모양 + 밝기 */