CSS入门(4.2)

<style type="text/css">
    img{
        width: 100px;
        border: 1px solid #000;
    }
</style>
<body>
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
</body>

就是这样写时 图片之间会有空格
本质上还是 行内元素或者行内块级元素 只要时 换行或者空格 都会有文本分隔符

正规的公司 Html 都是会压缩的

最好的方式

<style type="text/css">
    img{
        width: 100px;
        border: 1px solid #000;
    }
</style>
<body>
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt=""><img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt=""><img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt=""><img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
</body>

有父级容器还可以这样强制改

<style type="text/css">
    div{
        font-size: 0px;
    }
    img{
        width: 100px;
        border: 1px solid #000;
    }
</style>
<body>
<div>
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
</div>
</body>

这种不讨好。

<style type="text/css">
    img{
        width: 100px;
        border: 1px solid #000;
        margin-left: -6px;
    }
</style>
<body>
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="">
</body>

除了这个以外 还有比较典型的案例

<style type="text/css">

</style>
<body>
    <textarea cols="30" rows="10">
    </textarea>
</body>

因为他的内容是在标签之间写的 有空格或者换行 就会有文本分隔符 然后文本输入框里的光标位置就不会是在开头

©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • 一、Python简介和环境搭建以及pip的安装 4课时实验课主要内容 【Python简介】: Python 是一个...
    _小老虎_阅读 11,244评论 0 10
  • 官网 中文版本 好的网站 Content-type: text/htmlBASH Section: User ...
    不排版阅读 9,959评论 0 5
  • 基础命令 主要的命令和快捷键 Linux系统命令由三部分组成:cmd + [options]+[operation...
    485b1aca799e阅读 4,795评论 0 0
  • HTML 5 HTML5概述 因特网上的信息是以网页的形式展示给用户的,因此网页是网络信息传递的载体。网页文件是用...
    阿啊阿吖丁阅读 9,854评论 0 0
  • 1.CSS基本概念 1.1 CSS的定义 CSS(Cascading Style Sheets)层叠样式表,主要用...
    寥寥十一阅读 5,916评论 0 6

友情链接更多精彩内容