• 多个Img标签之间的间隙处理方法


    1.多个标签写在一行

    <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/> <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/>
    <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/><img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/>

    效果前:

    效果后:

    2.将要闭合标签的地方与开始标签的地方重合

    <img src="/i/eg_tulip.jpg"   alt="郁金香" height="100px" /><img src="/i/eg_tulip.jpg"   alt="郁金香" height="100px" />

    3.使用注释头尾相连

    <img src="/i/eg_tulip.jpg"   alt="郁金香" height="100px"/><!-- --><img src="/i/eg_tulip.jpg"   alt="郁金香" height="100px" />

    4.在img标签的父级上写:font-size:0;

    <div style="font-size:0">    <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/>    <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/> </div>

    效果:

    5.使用display:block(img是内联元素)

    <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px" style="display:block"/> <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px" style="display:block"/>

    效果:

    6.使用letter-spacing属性

    <div style="letter-spacing:-800px"><!--letter-spacing的值无论是负多少都不会产生重叠-->     <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/>     <img src="/i/eg_tulip.jpg"  alt="郁金香" height="100px"/> </div>        

    效果:

    后来都会美好的!
  • 相关阅读:
    Linux系统根目录各文件夹的含义
    openstack与VMware workStation的区别
    VMWare的网络
    VMware Workstation 的安装和使用
    Jmeter简介
    加快建设创新型国家
    c语言指针详解
    [翻译]NUnit--前言(一)
    [翻译]NUnit--Getting Started(二)
    [测试]单元测试框架NUnit
  • 原文地址:https://www.cnblogs.com/momox/p/5047117.html
Copyright © 2020-2023  润新知