rounded corners without images


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <div id="container">
  2. <b class="rtop">
  3. <b class="r1"></b> <b class="r2"></b> <b class="r3"></b> <b class="r4"></b>
  4. </b>
  5. <!--content goes here -->
  6. <b class="rbottom">
  7. <b class="r4"></b> <b class="r3"></b> <b class="r2"></b> <b class="r1"></b>
  8. </b>
  9. </div>
  10.  
  11. And here's it the basic CSS:
  12.  
  13. .rtop, .rbottom{display:block}
  14. .rtop *, .rbottom *{display: block; height: 1px; overflow: hidden}
  15. .r1{margin: 0 5px}
  16. .r2{margin: 0 3px}
  17. .r3{margin: 0 2px}
  18. .r4{margin: 0 1px; height: 2px}

URL: http://www.html.it/articoli/nifty/index.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.