How each span element gets it's parent's title property in css? is it possible ? is it possible if I use scss or less or something?
<div>
<div title="hello"><span> </span></div>
<div title="dear"><span> </span></div>
<div title="world"><span> </span></div>
</div>
so after applying css styling, it's result should be equivalent to this
<div>
<div title="hello"><span>hello</span></div>
<div title="dear"><span>dear</span></div>
<div title="world"><span>world</span></div>
</div>