Quick Tip: Practical CSS Shapes | Nettuts


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

USE A SPAN!


Copy this code and paste it in your HTML
  1. .arrow {
  2. width: 0; height: 0;
  3. line-height: 0;
  4. border-left: 20px solid transparent;
  5. border-top: 10px solid #c8c8c8;
  6. top: 104%;
  7. left: 0;
  8. position: absolute;
  9. }

URL: http://net.tutsplus.com/tutorials/html-css-techniques/quick-tip-practical-css-shapes/

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.