A Pen by Ashley Coleman on CodePen.
Created
July 30, 2014 15:16
-
-
Save AshCoolman/7319c90d14e84a7fcf86 to your computer and use it in GitHub Desktop.
A Pen by Ashley Coleman.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ol> | |
<li> | |
<span>A long sentence must be hidden</span> | |
<span>that must be inline-block</span> | |
</li> | |
<li> | |
<span>Cras dignissim cursus nibh. Curabitur.</span> | |
<span>In hac habitasse platea dictumst.</span> | |
</li> | |
</ol> | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ol { | |
width: 250px; | |
} | |
li { | |
width: 100%; | |
background-color:cyan; | |
span { | |
vertical-align:bottom; | |
display: inline-block; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
width: 50%; | |
background-color:yellow; | |
} | |
span:hover { | |
display: inline-block; | |
overflow: visible; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
width: 100%; | |
background-color:salmon; | |
position:absolute; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment