How to make the border round in html

青灯夜游
Release: 2022-01-21 17:21:30
Original
17645 people have browsed it

Method: 1. Use the width and height attributes to set the element to a square; 2. Use "border: border size solid color value;" to add a border to the square element; 3. Use "border-radius: 50% ;" statement makes the border round.

How to make the border round in html

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

Change the border into a circle in html

1. Create a div element and set it to a square using the width and height attributes

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<style>
			div{
				width: 100px;
				height: 100px;
				background-color: #FFC0CB;
			}
		</style>
	</head>

	<body>
		<div></div>
	</body>

</html>
Copy after login

How to make the border round in html

2. Add a border

div{
	width: 100px;
	height: 100px;
	background-color: #FFC0CB;
	border: 2px solid black;
}
Copy after login

How to make the border round in html

3. Change the border into a circle

div{
	width: 100px;
	height: 100px;
	background-color: #FFC0CB;
	border: 2px solid black;
	border-radius: 50%;
}
Copy after login

How to make the border round in html

Related recommendations: "html video tutorial"

The above is the detailed content of How to make the border round in html. 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