CSS
7
Вклад в тег
snippets.json
(можно любое другое название).File => Preferences => Settings
и в строке поиска вбиваем Emmet: Extensions Path
Add Item
и прописать путь к папке в которой лежат (или лежит если файл один) файлы со снипеттами. Обязательно в конце должно быть название папки, без названия самого файла!{
"html": {
"snippets": {
"img:l": "img[width height loading='lazy']"
}
}
}
.testimonialsContentBottom::after {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 20px;
background-color: red;
height: 90%;
width: 90%;
z-index: -1;
}
.testimonialsContentBottom::before {
content: '';
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 20px;
background-color: blue;
height: 100%;
width: 80%;
z-index: -2;
}