css - Middle element gets all space between elements -


i style list following: enter image description here

i tried using following html code:

<ul>   <li>     <span class="label">a</span>     <span class="middle-separator"></span>     <span class="data">aaa</span>   </li> </ul> 

but couldn't figure out how css possible have dynamic size on middle element.

one posibility use flex make middle separator grow

apply style:

li {   list-style: none;   display: flex; }  .middle-separator {   flex: 1;   border-bottom: 1px solid; } 

Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -