recherche

Maison  >  Questions et réponses  >  le corps du texte

如何做圆角效果?

border-radius   怎么用的。后面有什么参数?

橱窗的光橱窗的光2842 Il y a quelques jours2086

répondre à tous(2)je répondrai

  • 数据分析师

    数据分析师2017-10-01 00:20:22

    Comment créer un effet de coin arrondi ? -Site Web PHP chinois Q&A-Comment créer un effet de coin arrondi ? - Questions et réponses sur le site Web chinois PHP

    Veuillez regarder et apprendre.

    répondre
    0
  • 迷茫

    迷茫2017-02-16 09:17:47

    在css中我们要使用border-radius 这个属性,后面我们写上像素即可,

    例如  我们给一个div设置宽高

    <div class="dv1"></div>

    然后我们来看下css部分

    .dv1{

    width:200px;

    height:200px;

    border:1px solid red;

    border-radius:8px;

    }

    这样就有个圆角的效果了!

    répondre
    2
  • Annulerrépondre