首页htmlborderCSS Property Value - 如何border-radius: 25px;

CSS Property Value - 如何border-radius: 25px;

我们想知道如何border-radius: 25px;

<!DOCTYPE html>
<html>
<head>
<style> 
div {
    border: 2px solid #a1a1a1;
    padding: 10px 40px; 
    width: 300px;
    border-radius: 25px;
}
</style>
</head>
<body>

<div>Here in your "div" you will see border.</div>

</body>
</html>