<!DOCTYPE html>
<html>
<head>
<title>W3.CSS(w3cschool.cn)</title>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<link rel="stylesheet" href="https://7npmedia.w3cschool.cn/w3.css">
</head>
<body>
<div class="w3-container">
<h2>圆角边框</h2>
<div class="w3-panel w3-border">
<p>我有正常的边框。</p>
</div>
<div class="w3-panel w3-border w3-round-small">
<p>我有小的圆角边框。</p>
</div>
<div class="w3-panel w3-border w3-round">
<p>我边框是圆角边框。</p>
</div>
<div class="w3-panel w3-border w3-round-large">
<p>我有大的圆角边框。</p>
</div>
<div class="w3-panel w3-border w3-round-xlarge">
<p>我有xlarge圆角边框。</p>
</div>
<div class="w3-panel w3-border w3-round-xxlarge">
<p>我有xxlarge圆角边框。</p>
</div>