
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
질문 내용 1.폴드 복사하면 그 내용 그대로 가는 거죠.? 2.복사된 이전 코드에 새로운 코드를 첨부시키는 것을 잘 모르겠어요
file:///C:/Users/minim/02-clone-coding/04_index%20.html(결과물이 이렇게 나와요) 문제가 뭔지 모르겠어
css
html,
body {
height: 100%;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
header {
width: 1000px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
}
.header-box1 {
width: 100%;
display: flex;
justify-content: flex-end;
align-items: center;
padding: 10px 0;
}
.header-box1-right {
color: #333;
text-decoration: none;
margin-left: 20px;
.header-box1-right a {
color: #333;
text-decoration: none;
margin-left: 20px;
}
.header-box2 {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}
.header-box2-left img {
height: 60px;
margin-right: 20px;
}
.header-box2-left span {
font-size: 24px;
font-weight: bold;
}
.header-box2-center form {
display: flex;
align-items: center;
border: 2px solid #5F0080;
border-radius: 20px;
padding: 5px;
}
.header-box2-center label {
color: #5F0080;
font-size: 14px;
margin-right: 10px;
}
.header-box2-center input[type="text"] {
border: none;
font-size: 16px;
margin-right: 10px;
}
.header-box2-center button[type="submit"] {
border: none;
background: none;
cursor: pointer;
}
