欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

文本图片的对齐方式

程序员文章站 2022-04-26 15:58:16
...

方法来源:https://www.w3cplus.com/css/icon-align-to-text.html

案例:

<!doctype html>
<html lang="en">
 <head>
  <meta charset="UTF-8">
  <meta name="Generator" content="EditPlus®">
  <meta name="Author" content="">
  <meta name="Keywords" content="">
  <meta name="Description" content="">
  <title>Document</title>
  <style>
  /* 方法1 */
 /* span{
  position:relative;
  display:inline-block;
  line-height:1;
  width:1em;
 }
 span img{
  position:absolute;
  top:0;
  left:0;
  width:1em;
  height:1em;
 } */

 

 /* 方法2 */
 /*span { 
  display: inline-flex; 
  align-items: center; 
 }
 span img{
  width:2em;
  height:2em;
 } */

 

 
 /* 方法3 */
 /* span { 
  display: inline-flex; 
  align-items: center; 
 }
 span img{
  width:1em;
  height:1em;
 }
 span::after{
  content:'文本';
 } */
  </style>
 </head>
 <body>
  <div>
 <!-- 方法1 --><!-- 方法2 -->
 <!-- <span>&#8203;<img src='1.png' /></span>文本1 -->
 <!-- 方法三 -->
 <!-- <span><img src='1.png' /></span> -->
  </div>
 </body>
</html>