Kinda Code
Home/HTML & CSS

HTML & CSS

Most Popular Open-Souce CSS Frameworks (2024)

Most Popular Open-Souce CSS Frameworks (2024)

Updated: Jan 24, 2024
Using CSS frameworks helps you create modern, industry-standard UI/UX in a record time. Nowadays, they are widely used on a huge amount of websites around the world by individuals, startups, agencies, and big enterprises. Using a......
Tailwind CSS: How to Create a Full-Screen Overlay Menu

Tailwind CSS: How to Create a Full-Screen Overlay Menu

Updated: Jun 13, 2023
A full-screen overlay menu has a fixed position as well as full-screen width and height. It stays over other elements of the webpage. However, a full-screen overlay menu is hidden by default and only shows up as needed (when the user......
Bootstrap 5: Vertically Center an Element inside a Div

Bootstrap 5: Vertically Center an Element inside a Div

Updated: Mar 03, 2023
The examples below show you how to vertically center an element that locates inside a div element. We are going to use Bootstrap 5 and its d-flex class to make the parent div become a flexbox container. Example 1: Vertically Center......
Tailwind CSS: Center an Element inside a Div

Tailwind CSS: Center an Element inside a Div

Updated: Mar 03, 2023
This short and straight-to-the-point article shows you how to vertically and horizontally center an element inside a <div> element with TailwindCSS. Center an Element Vertically To vertically center an element, just use......
Tailwind CSS: Create a Button with Gradient Background

Tailwind CSS: Create a Button with Gradient Background

Updated: Mar 03, 2023
In TailwindCSS, you can implement color linear gradients by using bg-gradient-{direction}, from-{color}. via-{color}, and to-{color} utilities. The quick example below creates a button with a gradient......
How to Create Circle Buttons with Tailwind CSS

How to Create Circle Buttons with Tailwind CSS

Updated: Mar 03, 2023
To create a circle button with TailwindCSS, first, create a button with equal width and height (square), then use the rounded-full utility like this: <div class="p-10"> <button class="w-72 h-72 rounded-full ......
Tailwind CSS: How to Create Gradient Text

Tailwind CSS: How to Create Gradient Text

Updated: Mar 03, 2023
The quick example below shows you how to create gradient text with TailwindCSS. Screenshot: The code: <div class="p-10"> <h1 class="text-4xl font-bold uppercase"> <span class="bg-clip-text......
How to create cut-out text effect with Tailwind CSS

How to create cut-out text effect with Tailwind CSS

Updated: Mar 03, 2023
The steps below show you how to create a cut-out text effect with Tailwind CSS. 1. Prepare HTML markup: <div> <h1>KindaCode.com</h1> </div> 2. Set an image background for the div element. We can do this......
How to Add Drop Shadows in Tailwind CSS

How to Add Drop Shadows in Tailwind CSS

Updated: Mar 03, 2023
In Tailwind CSS, you can create drop shadows by using drop-shadow-{amount} utilities. {amount} can be: md: Medium lg: Large xl: Extra large 2xl: Double extra large You can customize the shadow color by using......
How to Create an Affix/Sticky Navbar with Bootstrap 5

How to Create an Affix/Sticky Navbar with Bootstrap 5

Updated: Mar 02, 2023
A sticky navbar (or an affix navbar) is a navbar that fixates to the top of the page when you scroll past it. This practical article walks you through a complete example of creating a navbar like so with Bootstrap 5. Example......
CSS: Styling Input’s Placeholder Text Examples

CSS: Styling Input’s Placeholder Text Examples

Updated: Feb 08, 2023
This article walks you through a couple of different examples of styling the placeholder text of an input/textarea field by using the ::placeholder pseudo-element in CSS. Example 1 In most browsers, placeholder text is light grey......
CSS @keyframes Examples

CSS @keyframes Examples

Updated: Feb 08, 2023
This article walks you through a couple of different examples of using @keyframes to create animation in CSS. The Moving Box This example will create a box that moves in a rectangular orbit. Besides the change in position, the size......
Page 1 of 8 Next →