CSS3,css 角まるの注意点

角丸は、divと、中の要素h2とかにも設定しないといけないよ!!



test

arararara

のcss

.news {
width: 480px;
border: 1px solid #018A99;
background-color: #FFF;
-moz-border-radius:8px;
-webkit-border-radius:8px;
}
h2{
font-size: 24px;
font-family: Tahoma, Geneva, sans-serif;
background-color: #118A99;
background-image: url(../images/icon.gif);
background-repeat: no-repeat;
background-position: left center;
color: #FFF;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 25px;
margin: 0px;
-moz-border-radius-topleft:8px;
-moz-border-radius-topright:8px;
-webkit-border-top-left-radius:8px;
-webkit-border-top-right-radius:8px;
}

下から4行。