From 26e8e593c1be935db64ff3f8a37d308698484714 Mon Sep 17 00:00:00 2001 From: Jessica Swift <33503210+jessnswift@users.noreply.github.com> Date: Sat, 8 Dec 2018 07:12:15 -0600 Subject: [PATCH] Add back `` (#24651) Added a few `` for an easier read of the article. --- guide/english/css/hover-selector/index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {