Border radius - CSS Tutorial for beginners in 1 Minute #shorts

preview_player
Показать описание
CSS Border Radius is the way we curve the edges of HTML elements. Here I show you how it works, how to use it and a couple of fun tricks for circles and other shapes.
Рекомендации по теме
Комментарии
Автор

div {
width :100px;
height :100px;
border-top-left-radius: 100px;
background-color: red;
}

vinodsaggam
Автор

Easy to way learning and clearity in video is best

maroofshaikh
Автор

Wow! I never knew to specify a corner whose radius I wanted to curve. I've just learnt it here.

trevormeth
Автор

<div class="curve"></div>

<style>
.curve{
width: 100px;
height: 100px;
background-color: rgba(114, 155, 233, 0.884);
border: 3px solid rgb(0, 128, 0) ;
border-top-left-radius: 100px;

}
</style>

ezekielpeace
Автор

This is exactly what I've been looking for to shape every edge of my box or button. Thanks man.

Borj
Автор

Thx buddy in 2023 still iam learning from u ❤

son_of_godz
Автор

love this changes... do more like this

deepakzaro
Автор

background-color: blue;
border: 3px solid green;
width: 100px;
height: 100px;
margin: 2em auto;
border-top-right-radius: 700px;

Kakashi-sryr
Автор

waiting for your javascript mastery course

rohanagrawal
Автор

<style>
.border-radius{
width:200px;
height: 200px;
border: solid rgb(10, 77, 115) 3px;
background-color: rgb(164, 178, 195);
border-top-left-radius:100% ;
}
</style>

<div class="border-radius"></div>

ishvavisavadiya
Автор

How did you get the box to move in real time like that?

Will-Britt
Автор

div{
background-color: aqua;
height: 500px;
width: 500px;
border-top-left-radius:100%;
border-bottom-left-radius: 45deg;

}

aymanekabti
Автор

.border{
hieght:50px;
width:50px;
border-top-left-radius:50%;
}

drhasnainsikandar
Автор

What to do when after setting border radius its upper and left color changes to dark color but bottom and right border color is light. How to fix it??

_asadx
Автор

border-radius-top-left: 50%;
Boom, done! 😎

punkerts