美文网首页
块级元素右对齐/左对齐

块级元素右对齐/左对齐

作者: 贤总_ | 来源:发表于2019-04-24 15:59 被阅读0次
    html部分
    <div class="father">
         <div class="son"></div>
    </div>
    
    css部分
     .father {
        width: 300px;
        background: green;
      }
    
      .son {
        width: 200px;
        height: 200px;
        margin-right: auto;   //左对齐
        background: red;
      }
    
     .father {
        width: 300px;
        background: green;
      }
    
      .son {
        width: 200px;
        height: 200px;
        margin-left: auto;   ///右对齐
        background: red;
      }
    

    相关文章

      网友评论

          本文标题:块级元素右对齐/左对齐

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