Circle button css

后端 未结 9 794
忘了有多久
忘了有多久 2020-12-13 06:00

I\'m a beginner and very confused, as a div tag when I give the same width and height with border-radius: 50% it always becomes circle. but with the tag a in case I want to

9条回答
  •  猫巷女王i
    2020-12-13 06:49

    For create circle button you are this codes:

    .circle-right-btn {
        display: block;
        height: 50px;
        width: 50px;
        border-radius: 50%;
        border: 1px solid #fefefe;
        margin-top: 24px;
        font-size:22px;
    }

提交回复
热议问题