How to remove image border with css

藏色散人
Release: 2021-03-30 11:43:28
Original
5140 people have browsed it

How to remove the image border in css: 1. Use the border attribute in css to set and remove the img border; 2. Remove the image border through "img:not([src]){opacity:0;}".

How to remove image border with css

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

css remove img border

1. The border attribute of thetag specifies the width of the border around the image, which means you can increase or remove the border of the image. You can also use the border attribute in css to set it.

border="0" // html属性 border: none; // css属性
Copy after login

Note: By default, images have no borders, so they do not need to be removed. (Unless the image is inside an a element).

Browsers usually display images representing hyperlinks (such as those contained intags) within a two-pixel wide border to indicate that readers can access the related content by selecting the image. linked documents.

2. When img does not receive the src attribute, a border will automatically appear. If border:0/none does not work, the solution is:

[Recommended learning:css video tutorial

The above is the detailed content of How to remove image border with 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
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!