
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
자주 쓰이는 css연습하기 (2) 3:31
wrap의 widht를 300px로 직접 지정하는 게 아니라
mytitle의 widht와 같게 하시오~ 라는 방법이 있나요?
작성한 코드 및 에러 메세지
<!DOCTYPE html>
<html lang="en">
<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">
<title>Document</title>
<style>
.mytitle {
background-color: green;
width: 300px;
height: 200px;
border-radius: 20px;
color: white;
text-align: center;
padding: 40px 20px 0px 20px;
background-image: url('https://www.ancient-origins.net/sites/default/files/field/image/Agesilaus-II-cover.jpg');
background-position: center;
background-size: cover;
}
.wrap {
background-color: green;
widht : (이곳입니다)
}
</style>
</head>
<body>
<div class="wrap">
<div class="mytitle">
<h1>로그인 해보시던가</h1>
<h5>아이디, 비밀번호를 입력해주세요</h5>
</div>
<p>I D : <input type="text" /></p>
<p>P W : <input type="text" /></p>
<button>Log in-</button>
</div>
</body>
</html>
오류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
