How to Install Hyper-V on Windows 10 / 11 Home
Hyper-V comes with all versions of Windows 10/11. except Home. However, don't fret; there are ways to enable Hyper-V on Windows 10 / 11 Home.
A Pseudo class in CSS is used to define the special state of an element. It can be combined with a CSS selector to add an effect to existing elements based on their states. For Example, changing the style of an element when the user hovers over it, or when a link is visited. All of these can be done using Pseudo Classes in CSS.
HTML provides pseudo-classes, classes that are defined by default and allow us to apply a style on either:
We will discuss the former in this page, and give examples for each pseudo-class. Keep in mind that there is no way of inlining pseudo-classes in CSS.
Table of contents [Show]
A link can either be in an unvisited state or a visited state. An unvisited link is a link that was not clicked on. A visited link is a link that was clicked on.
<style>
a.special:link {
color: green;
}
a.special:visited {
color: red;
}
</style>
<p><a href="#">This is a standard link, it will become purple when clicked</a></p>
<p><a href="#">This is a special colored link and become red when clicked</a></p>
The CSS :hover pseudo-class can be used to define styles for HTML elements which the user is hovering upon using the mouse.
<style>
p:hover {
background-color: yellow;
}
</style>
<p>Paragraphs now have a yellow background when hovering over them.</p>
The CSS :active pseudo-class defines the styles to use for an element which is currently being clicked.
<style>
a:active {
font-weight: bold;
}
</style>
<p>
<a href="#first">First Section</a>
<a href="#second">Second Section</a>
<a href="#third">Third Section</a>
</p>
Navigating to a specific section in the page also allows us to style the destination element.
<style>
p:target {
font-weight: bold;
}
</style>
<p>
<a href="#first">First Section</a>
<a href="#second">Second Section</a>
<a href="#third">Third Section</a>
</p>
<p id="first">This is the text of the first section.</p>
<p id="second">This is the text of the second section.</p>
<p id="third">This is the text of the third section.</p>
The CSS :focus pseudo-class defines the styles to use for an element which is focused.
<style>
input:focus {
font-weight: bold;
}
</style>
<form>
<p><input type=text value="First field"></p>
<p><input type=text value="Second field"></p>
<p><input type=text value="Third field"></p>
</form>
For more state-specific pseudo classes that relate to HTML form input elements, please visit Input Pseudo-classes.
For advanced selectors that enable greater control on selecting specific elements, please visit Advanced Selectors.
This page does not have an exercise yet. You are welcome to contribute one by sending me a pull request:
https://github.com/ronreiter/interactive-tutorials
Hyper-V comes with all versions of Windows 10/11. except Home. However, don't fret; there are ways to enable Hyper-V on Windows 10 / 11 Home.
We wanted to create the absolute most basic routing code in PHP, so here it is. We will direct ALL traffic to index and route to the new files from here.
How to fix a Hacked cPanel account, a user account