Home  >  Article  >  Web Front-end  >  How to use vertical-align to align input elements and img elements

How to use vertical-align to align input elements and img elements

php中世界最好的语言
php中世界最好的语言Original
2018-01-26 10:28:502319browse

This time I will show you how to use vertical-align to align the input element and the img element, and how to use vertical-align to align the input element and the img element. What are the precautions , the following is a practical case, let’s take a look.

We know that if input and img are placed on the same line, the img tag will always be a head higher than the input, which is very ugly. I have tried many methods before, but none of them work. Later, the most searched thing on the website was to add an align="absmiddle"attribute to img. This method seems feasible, but it does not comply with HTML standards. Later, I accidentally discovered that it is enough to add vertical-align:middle to input and img at the same time:

The code is as follows:

input,img{vertical-align:middle;}

In this way, the code will be aligned horizontally.

I believe you have mastered the methods after reading these cases. For more exciting information, please pay attention to the php Chinese website Other related articles!

Related reading:

How to operate the input box style of type="file"

head structure in HTML How to use

#How to use iframe to display weather on your webpage

The above is the detailed content of How to use vertical-align to align input elements and img elements. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn