<h1>문제 : section(green 색 막대)과 article(blue 색 막대)을
한 줄에 보이게 해주세요.</h1>
<div></div>
<section></section>
<article></article>
div {
height:100px;
background-color:red;
}
section {
display : inline-block;
height:100px;
background-color:green;
width : 100px;
}
article {
display : inline-block;
height:100px;
background-color:blue;
width : 100px;
}
<h1>문제 : section(green 색 막대)과 article(blue 색 막대)을 한 줄에 보이게 해주세요.</h1>
<div></div>
<section></section>
<article></article>
div, section, article {
height:100px;
background-color:red;
}
section, article {
width:100px;
display:inline-block;
}
section {
background-color:green;
}
article {
background-color:blue;
}
<div>
<section>
<article>