Author name: Manong

CSS

CSS Pseudo-elements

Pseudo-elements style specific parts of an element. ::Before The ::before pseudo-element inserts content before an element’s actual content. ::After The ::after pseudo-element inserts content after an element’s actual content. ::First-line The ::first-line pseudo-element applies styles to the first line of text inside an element. ::First-letter The ::first-letter pseudo-element applies styles to the first letter of the first line of text inside an element. CSS Pseudo-elements Example Code CSS Labs

CSS

CSS Visibility

CSS visibility allows you to control whether an element is visible or hidden without affecting the layout of the page. Visible The visibility: visible; property is the default value, meaning the element is visible. Hidden The visibility: hidden; property hides the element, but it still takes up space in the layout. Collapse The visibility: collapse; property is used for table rows and columns. The element is hidden and the space it occupied is also removed. CSS Visibility Example Code CSS Labs

CSS

CSS Text Styling

CSS provides a range of properties of style text, including color, alignment, decoration, transformation, and more. Text Color The color property sets the text color. Text

CSS

CSS Selectors

CSS selectors are used to target HTML elements and apply styles to them. Element Selector Targets elements by their tag

CSS

CSS Animations

Understanding Keyframes Keyframes define the start and end states of an animation, as well as any intermediate points. You use the @keyframes rule to create these keyframes. This example creates a fadeIn animation that transitions the element’s opacity from 0 to 1 over 2 seconds. Applying Animation Properties You can control various aspects of the animation using properties like animation-duration, animation-timing-function, animation-delay, and animation-iteration-count. In this example, the .slide-in class applies a sliding animation that moves an element from off-screen to its original position. The animation lasts for 3 seconds, starts after a 1-second delay, and repeats infinitely. CSS Animations Example Code CSS Labs

CSS

CSS Transitions

Understanding the Transition Property Transitions in CSS let you change property values over a specified duration. The transition property is shorthand for transition-property, transition-duration, transition-timing-function, and transition-delay. In this example, the .box element will smoothly transition its background color to green and its width to 200px over 2 seconds when you hover over it. Timing Function The transition-timing-function property allows you to define the speed curve of the transition effect. CSS Transitions Example Code CSS Labs

CSS

CSS Grid (Part 2)

Defining Grid Areas The grid-template-areas property allows you to name specific areas of your grid and place items accordingly. This method makes

CSS

CSS Grid (Part 1)

Understanding the Grid Container and Grid Items The CSS Grid layout is based on a grid container that holds grid items. The grid container is defined using the display: grid; property. In this example, .grid-container sets up a grid with two columns of equal width and a gap between items. Placing Grid Items Grid items are placed within the grid container using the grid-column and grid-row properties. CSS Grid (Part 1) Example Code CSS Labs

CSS

CSS Flexbox (Part 2)

Aligning Items and Content Flexbox provides properties to align items and content within the flex container. Flexible Sizing with Flex-grow, Flex-shrink, and Flex-basis These properties allow you to control how flex items grow, shrink, and set their initial size. CSS Flexbox (Part 2) Example Code CSS Labs

CSS

CSS Flexbox (Part1)

Understanding the Flex Container and Flex Items The Flexbox model consists of a flex container and flex items. The container is defined using the display: flex; property, and the child elements become flex items. In this example, .flex-container is the parent element that will hold the flex items. Flex Direction The flex-direction property specifies the direction in which the flex items are placed in the

Scroll to Top