Results 1 to 2 of 2

Thread: ROUNDED BUTTONS USiNG CSS

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Oct 2009
    Posts
    105

    ROUNDED BUTTONS USiNG CSS

    I am trying to m ake rounded buttons using CSS. I serached a lot on the internet but all the solutions that I found is using the Images. (See URLs Mentioned Below) . is it possible to create rounded button using CSS without using any image.


    http://www.webtoolkit.info/css-round...ons-links.html
    http://www.onextrapixel.com/2009/04/...-link-buttons/

  2. #2
    PowerPoster motil's Avatar
    Join Date
    Apr 2009
    Location
    Tel Aviv, Israel
    Posts
    2,143

    Re: ROUNDED BUTTONS USiNG CSS

    Yes its possible BUT only for browsers that support CSS3 (FireFox, Chrome,IE9 Beta and Safari)

    for FireFox
    Code:
    .MyButton{border:1px solid black;-moz-border-radius:5px 5px 5px 5px;}
    for Chrome, Safari:
    Code:
    .MyButton{border:1px solid black;-webkit-border-radius:5px 5px 5px 5px;}
    there is also really neat jQuery Plugin that create rounded corners without images i never used it but it looks good"

    http://www.methvin.com/jquery/jq-corner-demo.html

    otherwise you'll have to use image
    * Rate It If you Like it

    __________________________________________________________________________________________

    "Programming is like sex: one mistake and you’re providing support for a lifetime."

    Get last SQL insert ID

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width