How can I make an Upvote/Downvote button?

前端 未结 2 907
半阙折子戏
半阙折子戏 2020-12-24 02:34

This is just for the styling, I\'m trying to make an upvote/downvote the same way that it\'s done on SO and Reddit, from what I can see they use arrow images as backgrounds

2条回答
  •  Happy的楠姐
    2020-12-24 02:50

    You can do it by using two simple images ... design two images in some image editors like Photoshop, if u don't have MSPaint...

    CSS code is

    #voting{
       width:30px;
       height:40px;
    }
    .upvote{
       width:30px;
       height: 20px;
       cursor: pointer;
    }
    .downvote{
       width:30px;
       height: 20px;
       background: url('downvote.jpg') 0 0 no-repeat;
       cursor: pointer;
    }
    

    HTML code :

提交回复
热议问题