How to code certain css shapes?

前端 未结 5 2223
后悔当初
后悔当初 2021-02-09 10:10

I am trying to make the shape below in CSS. Any ideas how to do this? Or know a tutorial site that can help? I am talking about the tag like shapes that are yellow.

5条回答
  •  无人共我
    2021-02-09 10:51

    First if you want that image exactly you will have to download it and add it to your solution. Once you have you can aplly it either to your link or button or whichever control you want to use. I used a button so i created the following style class and applied it.

    .btnLarge_blue { background:url("../images/btn_Large_blue.gif"); width:68px; height:20px; font:12px Calibri; cursor:pointer; border:0px; padding:0px;}

    ......

    Hope this helps :)

提交回复
热议问题