기술스택/FE
[FE] CSS 컨벤션
dekoms
2025. 1. 4. 23:25
.selector {
/* 박스 모델 */
display: flex;
position: relative;
top: 0;
margin: 10px;
padding: 15px;
/* 크기 */
width: 100%;
height: auto;
/* 테두리 및 배경 */
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f5f5f5;
/* 텍스트 및 글꼴 */
font-size: 16px;
color: #333;
text-align: center;
/* 기타 */
cursor: pointer;
transition: all 0.3s ease;
}