Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <div>
  2. <!--White-space -->
  3. <span>Some text here<span>
  4. </div>
  5.  
  6. div {
  7. background: red;
  8. }
  9.  
  10. span {
  11. background: blue;
  12. color: #fff;
  13. }
  14.  
  15. div {
  16. background: red;
  17. font: 0/0 a;/*make text invisible for parent container with white-spaces*/
  18. }
  19.  
  20. span {
  21. background: blue;
  22. color: #fff;
  23. ont: 12px/normal Arial, sans-serif;/*set back font for child container*/
  24. display:inline-block;/*just for good render effect*/
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement