A
A
Andriy Broda2018-06-18 14:19:11
css
Andriy Broda, 2018-06-18 14:19:11

How to make up such decorative elements?

Elements such as blue line, circle, etc.
5b2795c01275b318675775.jpeg

Answer the question

In order to leave comments, you need to log in

8 answer(s)
L
Lumore, 2018-06-18
@AndriyBroda

SVG

E
Eugene, 2018-06-18
@iamd503

picture

M
Maxim Uglov, 2018-06-18
@Vencendor

Circle - you can use border and choose border-radius, but you might not get a perfect circle, then you need to change the overall size a bit.

.circle{
width: 100px;
height: 100px;
border: 4px solid blue;
border-radius: 50px;

}

A wave is most simply a picture, but if there are any instructions not to use pictures, then SVG

N
nichvlas, 2018-06-19
@nichvlas

This layout is from html academy
And they have a course on svg and how to draw it using css
https://htmlacademy.ru/courses/130
For such simple elements like a curved line, it’s quite possible to get confused and make

E
Egor Zhivagin, 2018-06-18
@Krasnodar_etc

svg

M
Maxim Timofeev, 2018-06-18
@webinar

svg through defer and then pull through use. Optimal, convenient, stylable via css

L
lukoie, 2018-06-19
@lukoie

the easiest and fastest way is to draw in illustrator and save as SVG, and then as a regular picture

D
Dmitry Pacification, 2018-06-28
@dmitry_pacification

Another way: border-image with repeat

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question