CSS :lang() Pseudo Class
CSS :lang() Pseudo-Class The :lang() pseudo-class allows you to apply styles based on an element’s language attribute ( lang ) . It’s useful for m…
CSS :lang() Pseudo-Class The :lang() pseudo-class allows you to apply styles based on an element’s language attribute ( lang ) . It’s useful for m…
The <xmp> tag in HTML is used to display preformatted text exactly as it is written in the HTML source code. It preserves whitespace, line bre…
1. SQL Database Creation You have defined SQL queries to create three tables: country_state_city , data_counrty , and tbl_country , which are used …
1. tooltip.html This file includes a Bootstrap Tooltip with FontAwesome icons. <!DOCTYPE html > < html lang = "en" > <…
Web Design Template HTML CSS JAVASCRIPT BOOTSTRAP
1. Database Setup (MySQL)
CSS :invalid Pseudo-Class The :invalid pseudo-class targets form elements that do not meet the required validation criteria . This is especially …
CSS :last-child Pseudo-Class The :last-child pseudo-class selects the last child of a parent , regardless of its type. It’s useful for styling the…
CSS :last-of-type Pseudo-Class The :last-of-type pseudo-class selects the last element of a specific type within its parent. It’s useful for styl…
CSS :not() Pseudo-Class The :not() pseudo-class allows you to exclude elements that match a specific selector. It’s useful when you want to style…
CSS :nth-child() Pseudo-Class The :nth-child(n) pseudo-class selects an element based on its position among all children , counting from the begin…
CSS :nth-last-child Pseudo-Class The :nth-last-child(n) pseudo-class selects an element based on its position among all children , counting from t…
CSS :nth-last-of-type() Pseudo-Class The :nth-last-of-type(n) pseudo-class selects an element based on its position among elements of the same typ…
CSS :only-child Pseudo-Class The :only-child pseudo-class selects an element if it is the only child of its parent. This means the parent must n…
CSS :only-of-type Pseudo-Class The :only-of-type pseudo-class selects an element if it is the only one of its type within its parent. This is use…
CSS :optional Pseudo-Class The :optional pseudo-class selects <input> elements that are not required (i.e., they don't have the requir…
CSS :indeterminate Pseudo-Class The :indeterminate pseudo-class applies styles to checkboxes, radio buttons, and progress bars that are in an unce…
CSS :in-range Pseudo-Class The :in-range pseudo-class applies styles to input fields whose values fall within a specified min and max range. It…
CSS :hover Pseudo-Class The :hover pseudo-class applies styles when a user moves their mouse pointer over an element . It's commonly used for …
