How to get the width of an image in css

藏色散人
Release: 2023-01-04 09:36:43
Original
4860 people have browsed it

How to get the width of the image in css: First create an HTML sample file; then get the width of the image through the JavaScript clientWidth and clientHeight properties.

How to get the width of an image in css

The operating environment of this tutorial: windows7 system, css3 version, thinkpad t480 computer.

Recommended: "css Video Tutorial"

In html/css, if you want to get the current width and height of an image, you can use the JavaScript clientWidth and clientHeight attributes. The clientWidth and clientHeight properties represent obtaining the current width and height of the image.

How to get the width of an image in css

# Now we will introduce the JS method to obtain the current width and height of the image based on specific code examples.

The code example is as follows:




    
    js获取当前图片宽高的示例
    

How to get the width of an image in css

Copy after login

When we click the get button, the imgSize() method defined above will be called, and the querySelector() method can get the id="sky" in the document. element, that is, the obtained img image. Then get the current width and height of the element (unit: pixels) through the .clientWidth and clientHeight properties.

For the img image here, we added a width attribute of 250px and an adaptive height.

The final effect is as shown below:

How to get the width of an image in css

Note:

clientWidth attribute represents the internal width of the element. This property includes padding but excludes vertical scrollbars (if any), borders, and margins, and its value is rounded to an integer.

clientHeight can be calculated by CSS height CSS padding - the height of the horizontal scroll bar (if present). This property is a read-only property and is 0 for elements with no CSS or inline layout boxes defined. Otherwise, it is The internal height of the element in pixels, including padding but excluding horizontal scroll bars, borders, and margins.

The above is the detailed content of How to get the width of an image in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!