
saxenadivya0007
Wednesday, 2024-07-31
css
Copy code
a[href^="https://"] { color: blue; } /* Selects all links starting with https */
css
Copy code
button:hover { background-color: lightblue; } /* Applies style when hovered */
css
Copy code
p::first-line { font-weight: bold; } /* Styles the first line of a paragraph */
css
Copy code
.box { box-sizing: border-box; } /* Includes padding and border in width/height */
css
Copy code
.absolute { position: absolute; top: 50px; left: 100px; }
css
Copy code
.flex-container { display: flex; justify-content: center; align-items: center; }
css
Copy code
.grid-container {
display: grid;
grid-template-columns: 1fr 2fr;
grid-gap: 10px;
}
css
Copy code
@media (max-width: 600px) {
.responsive { flex-direction: column; }
}
css
Copy code
.container { width: 80%; max-width: 1200px; }