We have a lot of options to get the height of an element using jQuery and JavaScript.
But how can we get the height using CSS only?
Suppose, I have a div with dynamic content - so it does not have a fixed height:
.dynamic-height {
color: #000;
font-size: 12px;
height: auto;
text-align: left;
}
<div class='dynamic-height'>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.
</div>
I want to set the margin-top
of .dynamic-height
to a value which is equal to (the height of the div - 10px)
using CSS only.
If I get the height I can use CSS calc()
function.
How do I do that?
css
only – Antiphonalpadding: 5px 0; box-sizing: border-box;
help you achieve the same? – Ravelin