我是靠谱客的博主 酷炫钢笔,最近开发中收集的这篇文章主要介绍Web实现:图标加文字 伪元素实现 一般实现,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

图标加文字的两种实现方式:
第一种方式:插入背景图
第一种
HTML部分代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>案例</title>
    <link rel="stylesheet" href="index.css">
</head>

<body>
<span class="icon"></span>
<span class="words">主页</span>
</body>

</html>

CSS部分代码:

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(https://qgt-document.oss-cn-beijing.aliyuncs.com/P3-2-HTML-CSS/1.2/source/first-page.png) no-repeat center;
  background-size: contain;
  vertical-align: top;
  margin-right: 4px;
}
.words {
  font-size: 18px;
  line-height: 24px;
  
}

第二种方式:伪元素
第二种
HTML部分代码:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>案例</title>
    <link rel="stylesheet" href="index.css">
</head>

<body>
<span>主页</span>
</body>

</html>

CSS部分代码:

span{
  position: relative;
  padding-left: 28px;
  font-size: 18px;
  line-height: 24px;
  
}
span::before {
  content: '';
  position: absolute;
  left: 0px;
  width: 24px;
  height: 24px;
  background: url(https://qgt-document.oss-cn-beijing.aliyuncs.com/P3-2-HTML-CSS/1.2/source/first-page.png) no-repeat center;
  background-size: contain;
}

最后

以上就是酷炫钢笔为你收集整理的Web实现:图标加文字 伪元素实现 一般实现的全部内容,希望文章能够帮你解决Web实现:图标加文字 伪元素实现 一般实现所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部