У меня есть 2 div в родительском div:
.core {
height: 200px;
/* 200% px is just for showcase, in my app I am using % of another div... */
background-color: yellow;
}
.boxName {
display: block;
position: relative;
}
.boxName span {
background-color: black;
color: white;
}
.basicInfo {
position: relative;
/*margin-bottom and bottom don't change anything*/
/*height sets height but including height of the title
height: 100%;
margin-bottom: 0%;*/
bottom: 0%;
width: 30%;
background-color: green;
}
<div class="core">
<div class="boxName"><span>Title</span></div>
<div class="basicInfo">
How to set height of this div to the bottom of core div?
</div>
</div>
Теперь я хотел бы убедиться, что div div basicInfo заканчивается там, где заканчивается основной div (днища выровнены).
Я пробовал множество вещей издругие сообщения, такие как display: flex, bottom: 0%, margin-bottom: 0% и т. д.
Я был бы рад услышать от вас, что я делаю неправильно.Я бы предпочел не использовать позицию: абсолютная в этом случае.
Fiddle .
Спасибо, Марсин