美文网首页
内容移除

内容移除

作者: huhu502 | 来源:发表于2016-09-07 20:21 被阅读12次
  • 1)移除文字
   a{
    width: 200px;
    height: 200px;
    display: inline-block;
    background-color: pink;
    text-indent: -20em;
  }
  </style>
   </head>
  <body>
  <a href="#">搜狐</a>
  </body>
  • 2)移除文字,用的较少
   div{
    height: 0;
    width: 200px;
    background-color: pink;
    padding-top: 100px;
    overflow: hidden;
  }
  </style>
   </head>
  <body>
    <div>
        fj
    </div>

相关文章

网友评论

      本文标题:内容移除

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