Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <input type="checkbox"/> <label style="display: inline-block; width: 60px; overflow: hidden">Sample text sample text</label>
  2.  
  3. HTML:
  4. <input type="checkbox"/>
  5. <label>Pretty awesome label to describe the uber cool checkbox. </label>
  6.  
  7. CSS:
  8. label {
  9. text-overflow: ellipsis;
  10. display: inline-block;
  11. overflow: hidden;
  12. width: 300px;
  13. white-space: nowrap;
  14. vertical-align: middle;
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement