[HTML/CSS] 뷰포트 중앙정렬하기
2024. 1. 3.ㆍ공부/HTML,CSS
728x90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>중앙정렬</title>
<style>
.circle {
position: absolute;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: black;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
}
</style>
</head>
<body>
<div class="circle">
</div>
</body>
</html>
'공부 > HTML,CSS' 카테고리의 다른 글
웹 구축을 위한 최소한의 조건, 웹 접근성 (1) | 2024.10.04 |
---|---|
[Component] 간단한 헤더 만들기 (0) | 2024.01.20 |
[HTML/CSS] em과 rem (0) | 2023.12.02 |
[HTML/CSS] 체크박스 커스텀 (0) | 2023.11.29 |
[웹접근성] 적절한 대체 텍스트 제공 (1) | 2023.11.28 |