I have a div with paragraph and inside that span is there height of div is given and both paragraph and span was inherited now i want to reduce the height of span using css. reduce height may be 10- 20px using calc
.parent{
height:121px;
width:300px;
overflow:hidden;
}
p,span{
max-height:inherit;
}
<div class="parent">
<p>
<span>
here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come here my text will come
</span>
</p>
<div>