<!DOCTYPE html > <html lang ="en" > <head> <meta charset ="UTF-8" > <title> Title </title> <style> . box { height : 200 px ; width : 200 px ; background : #22bf60 ; } . box : hover { height : 250 px ; width : 250 px ; background : red ; } . p : first-line { color : red ; } . p : before { content : "*" ; color : green ; font-size : x-large ; } . p : after { content : '*' ; color : green ; font-size : x-large ; } . p : first-letter { color : #042a84 ; font-size : x-large ; } </style> </head> <body> <div class ="box" > </div> <p class ="p" > CSS pseudo-elements a...
Comments
Post a Comment