HTML/CSS Same size no matter text -


hey need section's, how make section size unchangeable no matter text size. photo:

enter image description here

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

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -