HTML/CSS <select> 태그 내용 가운데 정렬하기
2020.09.21 15:17
<!DOCTYPE html>
<html lang="ko">
<head>
<title>Example</title>
<style>
select {
text-align-last: center;
}
</style>
</head>
<body>
<form action="go.php" method="post">
<select name="">
<option value="">아이템 1</option>
<option value="">아이템 2</option>
</form>
</body>
</html>
text-align-last 프로퍼티를 center 값으로 주면 됩니다.