What attributes can be used to set borders in css

王林
Release: 2023-01-03 09:25:15
Original
10369 people have browsed it

To set the border in CSS, you can use the border attribute, border-style attribute, border-width attribute, border-color attribute, etc. The border property allows us to specify the style and color of an element's border.

What attributes can be used to set borders in css

The operating environment of this article: windows10 system, css 3, thinkpad t480 computer.

Introduction to the border property:

The CSS border property allows you to specify the style and color of an element's border.

Commonly used attributes:

  • border shorthand attribute, used to set the attributes for four sides in one statement.

  • border-style is used to set the style of all borders of an element, or set the border style for each side individually.

  • border-width Shorthand attribute, used to set the width of all borders of an element, or set the width of each border individually.

  • border-color Abbreviation attribute, set the color of the visible parts of all borders of the element, or set the color for each of the 4 sides.

Example:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>php中文网</title>
<style>
p.one 
{
	border-style:solid;
	border-width:5px;
}
p.two 
{
	border-style:solid;
	border-width:medium;
}
p.three
{
	border-style:solid;
	border-width:1px;
}
</style>
</head>

<body>
<p class="one">一些文本。</p>
<p class="two">一些文本。</p>
<p class="three">一些文本。</p>
</body>

</html>
Copy after login

Running results:

What attributes can be used to set borders in css

Recommended learning: CSS tutorial

The above is the detailed content of What attributes can be used to set borders in css. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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