border-radius css3부터 가능해진 border-radius. 모서리를 둥글게 만들때 사용. border-top-left-radius: 속성값 (%,px) border-top-right-radius: 속성값 (%,px) border-bottom-right-radius : 속성값 border-bottem-left-radus : 속성값 한번에 쓸때는 border-radius : 속성값 으로 해줌. <style type="text/css"> .radius01 { width:200px; padding:20px; margin-bottom:30px; background:#09F; border-top-left-radius:20px 50px; } .radius02 { width:200px; padding:20px; margin-bottom:30px; background:#09F; border-top-right-radius:30px; } .radius03 { width:200px; padding:20px; margin-bottom:30px; background:#09F; border-bottom-right-radius:50px 20px; } .radius04 { width:200px; padding:20px; margin-bottom:30px; background:#09F; border-top-left-radius:20px 30px; } .radius05 { width:200px; padding:20px; margin-bottom:30px; background:#09F; border-radius:30px; } .radius06 { width:200px; padding:20px; margin-bottom:30px; background:#09F; border-radius:50px 30px 20px 10px; } </style> <div class="radius01...