HTML/CSS Same size no matter text -
hey need section's, how make section size unchangeable no matter text size. photo:
i want both section same size in left no matter text size. here css
#info2 { background-color: white; float: left; width: 45%; padding-bottom: 2%; padding-left: 2%; padding-right: 2%; margin-top: 2%; padding-top: 0.1%; } #info3 { background-color: white; float: right; width: 45%; margin-top: 2%; padding-left: 2%; padding-right: 2%; }
create add class sections want same , call sectionheight. create css setting height.
for example;
html
<div class="sectionheight" id="info2"></div> <div class="sectionheight" id="info3"></div>
css
#info2 { background-color: white; float: left; width: 45%; padding-bottom: 2%; padding-left: 2%; padding-right: 2%; margin-top: 2%; padding-top: 0.1%; } #info3 { background-color: white; float: right; width: 45%; margin-top: 2%; padding-left: 2%; padding-right: 2%; } . sectionheight { height:20% }
Comments
Post a Comment