본문 바로가기

웹 프로그래밍/CSS

[CSS] 박스모델 (padding, text-align, border-style, border-color, border-width 등)

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<style>
	div{
		width: 300px;
		background-color: blue;
		padding: 10px; 
		text-align: center; 
		border-style: solid; /* solid: 실선 */
		border-color: orange;
		border-width: 5px;
	}
</style>

<body>
	<div>사각형-1</div>
</body>
</html>