Full Stack Developer
CSS stands for Cascading Style Sheets. It is a style sheet language that is used to describe the look and formatting of a document written in a markup language. It provides an additional feature to HTML. It is generally used with HTML to change the style of web pages and user interfaces. It can also be used with any kind of XML document including plain XML, SVG, and XUL.
CSS is used along with HTML and JavaScript in most websites to create user interfaces for web applications and user interfaces for many mobile applications.
Shorthand for setting both align-items and justify-items.
.container
{
display: grid;
place-items: center;
}
Defines the spacing between elements in a flex or grid container. Shorthand for row-gap and column-gap.
.container
{
display: flex;
gap: 12px;
}
Add effects like brightness, contrast, grayscale, etc.
.image
{
filter: blur(10px);
filter: contrast(150%);
}
Applies color tint to HTML input elements.
.checkbox
{
accent-color: #FF1493;
}
Shorthand for decoration line, style, and color.
.text
{
text-decoration: underline wavy;
}
Clips an element and shows only the content defined by the shape.
.image
{
clip-path: polygon(50% 0%
,0% 100%
,100% 100%
);
}
.container
{
writing-mode: horizontal-tb;
-webkit-writing-mode: horizontal-tb;
}