Smooth scrolling with one line of CSS| Responsive | No Javascript

Опубликовано: 24 Март 2026
на канале: said styles
60
12

بسطر واحد من لغة CSS يمكننا عمل Smooth scrolling
دون الحاجة الى المكتبات
الكود الخاص Responsive
@media screen and (max-width: 1000px) {
.info{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);

}
ul li{
position: relative;
width: 100px;
height: 35px;
line-height: 35px;
margin: 10px 10px;
display: flex;
justify-content: center;
align-content: center;
}
h1{
font-size: 25px;
}

p{
font-size: 15px;

}

}