diff --git a/guide/english/css/hover-selector/index.md b/guide/english/css/hover-selector/index.md index c32a6dd955..a78fe91f06 100644 --- a/guide/english/css/hover-selector/index.md +++ b/guide/english/css/hover-selector/index.md @@ -5,13 +5,13 @@ title: Hover Selector The CSS `:hover` selector is one of many pseudo-classes that are used to style elements. -The :hover selector is used to select elements when you mouse over them. +The `:hover` selector is used to select elements when you mouse over them. -The :hover selector can be used on all elements, not only on links. +The `:hover` selector can be used on all elements, not only on links. -Use the :link selector to style links to unvisited pages, the :visited selector to style links to visited pages, and the :active selector to style the active link. +Use the `:link` selector to style links to unvisited pages, the `:visited` selector to style links to visited pages, and the `:active` selector to style the active link. -Note: :hover MUST come after :link and :visited (if they are present) in the CSS definition, in order to be effective! +Note: `:hover` MUST come after `:link` and `:visited` (if they are present) in the CSS definition, in order to be effective! CSS Syntax :hover {