


How is the css outline attribute used? The difference between outline attributes and border attributes (example)
This chapter will introduce to youHow to use the css outline (outline) attribute? The difference between the outline attribute and the border attribute (example) , so that everyone can understand some knowledge about the outline attribute in CSS, as well as the difference between the outline and border attributes difference. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
1. What is the CSS outline (outline) attribute
The outline (outline) is a line drawn around the element, located at the edge of the border The periphery can play the role of highlighting elements.
For example: when we usually read the content in the browser, when the mouse clicks to get an a tag link or an input radio button to gain focus, the element will be Contoured dashed box surround. This outline dotted box is the outline.
By default, when you click the a tag, input, or add a mouse click event, the browser will leave an outline frame (blue under chrome). However, these default outline frames sometimes affect the appearance and destroy the overall effect of the front-end page. We don't really want to keep them. So how to remove the browser's default outline frame, or change the default outline frame effect?
The outline (outline) property of css allows us to change the default outline dotted box effect. The outline attribute has the following related attributes:
outline: Set all outline attributes in one statement
outline-style: Set the style of the outline
outline-width: Set the width of the outline
outline-color: Set the color of the outline
outline-offset: Offset the outline and draw it on the edge of the border
The first related attribute outline is a shorthand form, the format is :
outline: outline-color || outline-style || outline-width;
Let us not set the relevant styles of the outline one by one, but can complete the settings at once.
Let’s use the following example to see how to use the CSS outline attribute:
If you want the link to be more eye-catching when it gets focus, you can set the outline line to red, as follows :
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>轮廓--outline</title> <style> .a { outline:5px solid red; } </style> </head> <body> <a href="#">我是默认下的连接</a><br /><br /> <a href="#" class="a">我是一个测试连接,会红</a> </body> </html>
The rendering is as follows:
And if you just want to remove the outline lines on the Tab that affect the beauty, the outline attribute can be set as follows:
.tab{ outline: none; ...... /* other properties */}
From the above example, we can see that outline (outline) and border (border) are very similar, but outline (outline) and border (border) are similar but different.
2. The difference between outline and border
Outline does not take up space. It does not add extra width or height; the border takes up the width; therefore, the outline does not affect the size or position of the element the way a border does.
outline may be non-rectangular; border is an ordinary border.
outline is designed for elements such as links, form controls, and ImageMap; border can be applied to almost all tangible html elements.
The above is the detailed content of How is the css outline attribute used? The difference between outline attributes and border attributes (example). For more information, please follow other related articles on the PHP Chinese website!

CSS Grid is a powerful tool for creating complex, responsive web layouts. It simplifies design, improves accessibility, and offers more control than older methods.

Article discusses CSS Flexbox, a layout method for efficient alignment and distribution of space in responsive designs. It explains Flexbox usage, compares it with CSS Grid, and details browser support.

The article discusses techniques for creating responsive websites using CSS, including viewport meta tags, flexible grids, fluid media, media queries, and relative units. It also covers using CSS Grid and Flexbox together and recommends CSS framework

The article discusses the CSS box-sizing property, which controls how element dimensions are calculated. It explains values like content-box, border-box, and padding-box, and their impact on layout design and form alignment.

Article discusses creating animations using CSS, key properties, and combining with JavaScript. Main issue is browser compatibility.

Article discusses using CSS for 3D transformations, key properties, browser compatibility, and performance considerations for web projects.(Character count: 159)

The article discusses using CSS gradients (linear, radial, repeating) to enhance website visuals, adding depth, focus, and modern aesthetics.

Article discusses pseudo-elements in CSS, their use in enhancing HTML styling, and differences from pseudo-classes. Provides practical examples.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

Notepad++7.3.1
Easy-to-use and free code editor

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Chinese version
Chinese version, very easy to use
