본문 바로가기

기술스택/FE

[FE] CSS 컨벤션

.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;
}

 

'기술스택 > FE' 카테고리의 다른 글

[FE] 디스플레이 해상도  (0) 2024.07.29
[해양물류] React, JavaScript의 이해  (0) 2024.07.18