Home  >  Article  >  Web Front-end  >  How to set div to rounded corners in css

How to set div to rounded corners in css

王林
王林Original
2021-05-17 14:38:4119230browse

The way to set the div to have rounded corners in css is to set the border-radius attribute for the div, such as [border-radius:5px]. The border-radius property is a composite property that allows us to add rounded borders to elements.

How to set div to rounded corners in css

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

We can make the corners rounded by adding the border-radius attribute. The specific code is as follows:

How to set div to rounded corners in css

Effect:

How to set div to rounded corners in css

The border-radius attribute is a composite attribute that can specify up to four border -*- radius attributes. This attribute allows you to add rounded borders to elements!

Example:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title></title> 
<style> 
div
{
	border:2px solid #a1a1a1;
	padding:10px 40px; 
	background:#dddddd;
	width:300px;
	border-radius:25px;
}
</style>
</head>
<body>

<div>border-radius 属性允许您为元素添加圆角边框! </div>

</body>
</html>

Display results:

How to set div to rounded corners in css

##Related video tutorial:

css video tutorial

The above is the detailed content of How to set div to rounded corners in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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