Front-End/CSS
[CSS] Ex01_style.css
이뮨01
2023. 6. 11. 15:42
기본적인 CSS 파일의 형태
table {
width: 400px;
}
.tr-tit {
background-color: gray;
height: 50px;
}
.tr-content {
background-color: whitesmoke;
height: 35px;
}
.tr-content > td:first-child {
text-align: right;
}
.tr-content:last-child > td {
text-align: center;
}
html의 style 태그 안에 쓰는 거 쓰면 된다.