Я установил ширину родительского элемента как 100%. Затем я решаю, что ширина двух элементов, охватываемых родительским, составляет 50% каждый. После этого я устанавливаю цвет фона для первого как белый, а другой - как черный. Под первым элементом есть одно странное белое пространство. Однако я изменил размер первой коробки, она все еще там. Кто-нибудь знает, как удалить это?
.container {
width: 100%;
}
.infoBox {
width: 100%;
height: 400px;
margin: 0;
}
.detailBox {
width: 50%;
margin: 0;
padding: 0;
float: left;
font-size: 16pt;
background: black;
}
.detailBox2 {
width: 50%;
margin: 0;
padding: 0;
float: right;
font-size: 16pt;
background: white;
}
.post {
width: 90%;
padding: 0 5%;
}
.detailBox .post {
color: white;
}
.detailBox2 .post {
color: black;
}
.post h1 {
margin: 2% 0;
}
.detailBox button {
padding: 4.65% 12%;
background: white;
border-radius: 30px;
color: #688dc1;
font-size: 10pt;
border: none;
border-color: #688dc1;
letter-spacing: 0.04em;
text-align: center;
font-weight: bold;
}
.detailBox2 button {
padding: 4.65% 12%;
background: white;
border-radius: 30px;
color: #688dc1;
font-size: 10pt;
border-color: #688dc1;
letter-spacing: 0.04em;
text-align: center;
font-weight: bold;
}
<div class="container">
<section id="infoBox">
<section class="detailBox">
<div class="post">
<h1>About me</h1>
<p>I studied editiorial, graphic, Western Art, web design and developement at college in Canada. After working at an American and Canadian companies, I finally established my own design comapny, JoeyNamiki Design. I discovered that I want to create
a large range of designs. In addition, I also want to develop as many websites as I can. </p>
<button>Learn More</button>
</div>
</section>
<section class="detailBox2">
<div class="post">
<h1>About you</h1>
<p>If you are looking for a web agency that can redesign and create your company's website with a well-ordered process, you should ask me what you want to do through email. With a clear menu, you can immediately tell how much are the costs for your
website and other options such as graphic, logo, poster designs. Let's talk together about your future website!</p>
<button>Learn More</button>
</div>
</section>
</section>