Add extractor and builder

Tested and working
This commit is contained in:
Angelos Chalaris
2019-08-22 14:04:18 +03:00
parent 343f8fd4c7
commit a8818b1998
101 changed files with 18465 additions and 9908 deletions

View File

@ -5,14 +5,10 @@ tags: visual,intermediate
Creates a circle shape with pure CSS.
#### HTML
```html
<div class="circle"></div>
```
#### CSS
```css
.circle {
border-radius: 50%;
@ -22,8 +18,6 @@ Creates a circle shape with pure CSS.
}
```
#### Demo
#### Explanation
`border-radius: 50%` curves the borders of an element to create a circle.