fix
Chris Demeke
Everyone can be a semi web designer now.
Proceed(9)
Thanks for your like.
You've done it, haven't you?
{"sid":"xu","rid":2,"page":"code","page_params":[],"username":""}
Skip
Next

We'll add only required prefixes
for browsers you gonna choose,
based on data from caniuse.com
4+
4+
9+
10.5+
4+
5.0+
2.1+
7+
Hide default rules
Copy to clipboard
HTML
<div class="enjoy-css">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</div>
Copy to clipboard
CSS
LESS
SCSS
.enjoy-css {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  margin: 1em auto 80px;
  padding: 70px 30px;
  border: 10px solid rgb(200,30,43);
  -webkit-border-radius: 240px / 140px;
  border-radius: 240px / 140px;
  font: normal 100%/normal "Times New Roman", Times, serif;
  color: rgb(51, 51, 51);
  text-align: center;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgb(255, 255, 255);
}

.enjoy-css::before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 10;
  width: 50px;
  height: 50px;
  position: absolute;
  content: '';
  right: 100px;
  bottom: -40px;
  border: 10px solid rgb(200,30,43);
  -webkit-border-radius: 50px;
  border-radius: 50px;
  font: normal 100%/normal "Times New Roman", Times, serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgb(255, 255, 255);
  text-shadow: none;
}

.enjoy-css::after {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 10;
  width: 25px;
  height: 25px;
  position: absolute;
  content: '';
  right: 50px;
  bottom: -60px;
  border: 10px solid rgb(200,30,43);
  -webkit-border-radius: 25px;
  border-radius: 25px;
  font: normal 100%/normal "Times New Roman", Times, serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgb(255, 255, 255);
  text-shadow: none;
}