
.wrap > a 에서 display: flex; 가 풀립니다 왜그런걸까요?
보고 계신 화면 전체를 캡처해 주시면, 튜터님들이 빠르게 상황을 상황을 이해할 수 있어요.
</><!DOCTYPE html>
<html>
<head>
<!-- 웹페이지 보이지는 않지만, 필요한 설정을 해두는 곳이에요.
우리가 집을 위해 미리 생각 해놓은 것을 적어두는 곳이라고 할 수 있죠!-->
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="투율파덜 - 프로필 링크" />
<meta property="og:description" content="6,5세두딸 아빠의 성장스토리" />
<meta property="og:image" content="공유할 이미지" />
<title>투율파덜 - 프로필 링크</title>
<style>
body{
background-color : #44398A;
}
.profile{
width: 100px;
height: 100px;
border-radius: 100%;
border : 2px solid white;
background-image: url('뽀인트몰.jpg');
background-position: center;
background-size: cover;
}
.main{
color: white;
font-size: 20px;
margin-top: 30px;
margin-bottom: 10px;
}
.sub{
color: white;
font-size: 14px;
margin-top: 0px;
margin-bottom: 30px;
}
.wrap{
width: 300px;
margin: 30px auto 0px auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.wrap > a {
width: 300px;
height: 50px;
background-color: white;
border-radius: 8px;
margin-bottom: 10px;
font-size: 14px;
font-weight: bold;
color: #44398A
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
</style>
</head>
<body>
<div class="wrap">
<div class="profile"></div>
<h1 class="main">투율파덜</h1>
<p class="sub">6세,5세 두딸 34세 아빠 성장 스토리</p>
<a target="_blank" href="https://smartstore.naver.com/ttpoml">뽀인트몰 스마트스토어</a>
<a target="_blank" href="https://ttpoml.tistory.com/">개발일지 티스토리</a>
</div>
</body>
</html>
