Skip to content

Instantly share code, notes, and snippets.

@poor666
Created February 19, 2015 18:19
Show Gist options
  • Save poor666/33e8442415b327fdff07 to your computer and use it in GitHub Desktop.
Save poor666/33e8442415b327fdff07 to your computer and use it in GitHub Desktop.
nowrap text
<div class="nobreak">
TEXTO COMPRIDO
</div>
<ul class="menu">
<li><span class='icon'>icon</span>
<span class='text'>text menu</span></li>
<li><span class='icon'>icon</span>
<span class='text'>text menu</span></li>
<li><span class='icon'>icon</span>
<span class='text'>text menu</span></li>
</ul>
@import "bourbon"
body
padding: 100px
ul
list-style: none
padding: 0
.icon
background-color: green
display: inline-block
.text
background-color: yellow
display: inline-block
width: 10px
overflow: hidden
white-space: nowrap
.nobreak
background-color: red
white-space: nowrap
width: 40px - 10px
overflow: hidden
@include transition (all 0.1s ease-in)
&:hover
width: 100px
@include transition (all 0.3s ease-out)
.menu
width: 138px
background-color: red
&:hover
width: 200px
@include transition (all 1s ease-out)
.text
width: 100px
@include transition (all 1s ease-out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment