1 неделю назад
​​​​​​​​​​​Стили css для сайта
​​​​​​​​​​​Стили css для сайта CSS Styles for Your WebsiteCSS (Cascading Style Sheets) is a powerful tool for enhancing the visual appeal and user experience of your website. With CSS, you can customize fonts, colors, layout, and more. Here are some popular CSS styles you can use on your site:1. Typography: Use font-family to specify the font for text, font-size for the size, and font-weight for the thickness. You can also use text-transform to change the case of text and text-decoration for underline or strikethrough...
361 читали · 1 год назад
Делаем анимацию фона (background) на css
Добрый день. Рассмотрим как просто сделать анимированный градиентный фон на чистом css. В этой статье сделаем градиентный фон и при помощи CSS стилей анимируем плавную смену градиента фона. Делаем простую страничку в HTML, примерно так: <head> <link rel="stylesheet" href="styles.css"> </head> <body> <h1>Тест</h1> </body> На этой странице подключена только таблица стилей и в теге body указан заголовок h1. Далее в файле styles.css вставляем такой текст: body { background: linear-gradient(90deg, rgba(132,128,194,1) 0%, rgba(177,177,218,0...