美文网首页
css是相对谁的

css是相对谁的

作者: A_dfa4 | 来源:发表于2021-07-01 11:12 被阅读0次

    相对于父级元素宽高
    width, height, margin,padding, text-indent ... 等
    相对于父级定位元素宽高
    top, left, right, bottom
    相对于自身宽高
    border-radius, translate, transform-origin, zoom,background-size
    相对于自身字体大小
    line-height
    相对于继承字体大小
    font-size

    demo

    <!doctype html>
    <html lang="en">
    <head>
      <meta charset="UTF-8">
      <meta name="viewport"
            content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
      <meta http-equiv="X-UA-Compatible" content="ie=edge">
      <title>Document</title>
      <style>
        .container{
          border: 1px solid #000;
          width: 600px;
          height: 600px;
        }
        .inner{
          border: 1px solid red;
          /*width: 200px;*/
          /*height: 200px;*/
          /*相对父元素*/
          width: 50%;
          height: 50%;
          /*margin-top: 50%;*/
          /*padding-top: 50%;*/
          /*text-indent: 50%;*/
          /*  相对自身*/
          /*border-radius: 10%;*/
          /*border-radius: 30px;*/
    
          /*translate, transform-origin, zoom,background-size*/
        }
      </style>
    </head>
    <body>
    
    <div class="container">
      <div class="inner">1111</div>
    </div>
    
    </body>
    </html>
    
    
    

    相关文章

      网友评论

          本文标题:css是相对谁的

          本文链接:https://www.haomeiwen.com/subject/ruljultx.html