"; 2. Use CSS styles Control the width and height properties."/> "; 2. Use CSS styles Control the width and height properties.">

Home  >  Article  >  Web Front-end  >  How to change image size

How to change image size

不言
不言Original
2019-01-09 17:40:33216494browse

Methods to change the image size: 1. Change the width and height in the HTML tag, code such as "img src="..." width="..." height="..."> "; 2. Use CSS styles to control the width and height attributes.

How to change image size

The operating environment of this article: Windows7 system, Dell G3 computer, HTML5&&CSS3.

When we design web pages, sometimes the images may not match the size. So how can we change the image size in the code? This article will introduce to you how to change the size of pictures?

We have two ways to change the size of the image: One is to change the width and height within the HTML tag; the other is to use CSS styles to control the width and height attributes.

Let’s first look at Changing the image width and height in the HTML tag

Use width directly in the image img tag and height attributes can control the width and height of the image.

The code is as follows




	
	

How to change image size

The effect is as follows (the original image is 1072x768px):

How to change image size

##We can set the width and height directly in the image tag, It will seem intuitive.

Then let’s take a look

Use CSS styles to control the width and height attributes

We use the same picture, the code is as follows




	
	
	

How to change image size

The effect is as follows: the picture also It became 150x150px

How to change image size

The above is the detailed content of How to change image size. 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
Previous article:How to comment in htmlNext article:How to comment in html