About the problem of vertical centering of img and span in div

About the problem of vertical centering of img and span in div

As shown below:

XML/HTML CodeCopy content to clipboard
  1. < html >   
  2. < head >   
  3. < style >   
  4. #test *{vertical-align:middle;}
  5. </ style >   
  6. < body >   
  7. < div   
  8. id = "test" >   
  9. < img   
  10. src = "http://127.0.0.1:7001/wsc/images/message.png" />   
  11. < span > sdfhsdhfdksfjhtes: </ span >   
  12. </ div >   
  13. </ body >   
  14. </ html >   

Please note: #test *{vertical-align:middle;}s

#test * represents all the elements in div, including inline elements such as span, input, and img.

vertical-align
Initial value: baseline (default value)
Inheritable: No Applicable to: Inline elements Description: vertical-align:baseline aligns the baseline of the element with the baseline of the parent element.
Warning: vertical-align does not affect the alignment of content within table cells, nor does it affect the alignment of content within block elements.

Please note: vertical-align only affects inline elements, such as span, img, em, input, a, etc., but is invalid for block elements such as div, h3, p, etc.

The above is all the content about the problem of vertical centering of img and span in div brought to you by the editor. I hope it will be helpful to you. Please support 123WORDPRESS.COM~

<<:  3 solutions to make your website support old versions of IE6, 7, 8, and 9 browsers

>>:  Can asynchrony in JavaScript save await?

Recommend

Vue conditional rendering v-if and v-show

Table of contents 1. v-if 2. Use v-if on <temp...

Detailed explanation of Vue's simple store

The simplest application of store in Vue is globa...

Vue+Element UI realizes the encapsulation of drop-down menu

This article example shares the specific code of ...

MySQL8 Installer version graphic tutorial

Installation The required documents are provided ...

Summary of MySQL InnoDB architecture

Table of contents introduction 1. Overall archite...

Tomcat8 uses cronolog to split Catalina.Out logs

background If the catalina.out log file generated...

MySQL 5.7 deployment and remote access configuration under Linux

Preface: Recently I am going to team up with my p...

What to do if the container started by docker run hangs and loses data

Scenario Description In a certain system, the fun...

Vue globally introduces scss (mixin)

Table of contents 1. mixin.scss 2. Single file us...

The best 9 foreign free picture material websites

It is difficult to find good image material websi...

MySQL integrity constraints definition and example tutorial

Table of contents Integrity constraints Definitio...

Node+socket realizes simple chat room function

This article shares the specific code of node+soc...

How to solve the element movement caused by hover-generated border

Preface Sometimes when hover pseudo-class adds a ...

A brief discussion on read-only and disabled attributes in forms

Read-only and disabled attributes in forms 1. Rea...