
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
flex-row wrap을 적용해도 화면이 두개로 안모이네요

작성한 코드 및 에러 메세지
<!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"> <link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Hahmlet:wght@400;500;600;700&display=swap" rel="stylesheet"> <title>2023 버킷리스트</title> <style> @import url('https://fonts.googleapis.com/css2?family=Hahmlet:wght@400;500;600;700&display=swap'); * { font-family: 'Hahmlet', serif; } .title { color: white; background-color: tomato; font-size: 24px; padding: 8px 16px; border-radius: 8px; } .bg { width: 360px; background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bg-grid.png"); } .msg { font-weight: bold; } .bucket { width: 230px; height: 160px; background-size: cover; background-position: center; } .img1 { background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-red.png"); background-size: cover; background-position: center; } .img2 { background-image: url("https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/bucket-lightred.png"); background-size: cover; background-position: center; } </style> <link rel="stylesheet" type="text/css" href="https://s3.ap-northeast-2.amazonaws.com/materials.spartacodingclub.kr/bucketList/sparta-bucket2.css"> </head> <body class="bg center"> <h1 class="title">2023 신년계획</h1> <p class="msg">모두 도전하고 이뤄보자!</p> <div class="row flex-row wrap"> <diV class="bucket img1 center"> 135&68 미만 유지하기</diV> <diV class="bucket img2 center"> 주 3회 이상 운동하기</diV> <diV class="bucket img2 center"> 철학하고 실천하기(인생관 정립)</diV> <diV class="bucket img1 center"> 화목한 가족관계 유지하기</diV> <diV class="bucket img1 center"> 파이썬과 앱,웹개발 등 코딩하기</diV> <diV class="bucket img2 center"> 연금자산 관리하기</diV> </div> </body> </html>오류 발생 시, 작성한 코드 전체와 에러 메시지를 첨부해 주세요.
Tip 1) </> 아이콘을 눌러 코드박스를 만들어 보세요.
Tip 2) Ctrl+A(맥의 경우 Command+A) 단축키로 코드를 한 번에 선택할 수 있어요!
