Give the <div> element a rounded corner (25px radius) on the bottom left side. - HTML CSS CSS

HTML CSS examples for CSS:Quiz

Description

Give the <div> element a rounded corner (25px radius) on the bottom left side.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
div {<!-- w w  w.  ja  v  a2s. c  o  m-->
    border-bottom-left-radius: 25px;
    background: #73AD21;
    padding: 20px;
    width: 200px;
}
</style>
</head>
<body>

<div>This is a div element. It has some text.</div>

</body>
</html>

Related Tutorials