Circular Button in CSS - CSS for link


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

The CSS for the wrapper for my article on Circular Buttons using CSS.


Copy this code and paste it in your HTML
  1. .photobutton{
  2. display: block;
  3. height: 180px;
  4. width: 180px;
  5. position: relative;
  6. top: 8px;
  7. left: 7px;
  8. border-radius:90px;
  9. -khtml-border-radius:90px;
  10. -moz-border-radius:90px;
  11. -webkit-border-radius:90px;
  12. }

Report this snippet


Comments


You need to login to view comments.