tglalap /
The border-radius shorthand property can be used to define all four corners simultaneously, border-radius:25px;.
<style> div { border:5px solid #4FFFA1; padding:30px; background:#F6FFA1; width:250px; border-top-left-radius:0px; border-top-right-radius:15px; border-bottom-left-radius:25px; border-bottom-right-radius:45px; } - See more at: http://www.corelangs.com/css/box/round.html#sthash.YNsYoQeK.dpuf} </style> </head> <body> <div>The border-radius shorthand property can be used to define all four corners simultaneously, border-radius:25px;.</div> </body>