css 질문
본문
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container{
display:flex;
flex-direction:column;
justify-content:center;
}
</style>
</head>
<body>
<div class="container">
<span class="item1">1515</span>
<span class="item2">1515151515</span>
</div>
</body>
</html>
저는
1515
1515151515
이런식으로 나오게 하고 싶은데
justify-content:center;를 추가해도 가운데로 안가더라고요.
align-items:center;를 하면 전체가 가운데로 가버리고,,,
padding이나 margin말고 해결방법은 없나요??
답변을 작성하시기 전에 로그인 해주세요.