想要舍入div元素

时间:2017-02-08 08:35:58

标签: html5

我想知道如何在这边做圆角?

<div style="background-color: yellow; border: 2px solid red; margin: 4px; padding: 2px; font-weight: bold; text-align: center;">
<h2>This site is not yet finished!</h2>
</div>

谢谢,杰里米。

1 个答案:

答案 0 :(得分:0)

使用 border-radius 示例:

border-radius:10px;

<div style="background-color: yellow; border: 2px solid red; margin: 4px; padding: 2px; font-weight: bold; text-align: center; border-radius:10px;">
<h2>This site is not yet finished!</h2>
</div>