HTML CSS examples for CSS:Selector
CSS - greater than selector - select items greater than N
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> p + p~p { display:none; } </style> <!--from ww w . j av a 2 s.c o m--> </head> <body> <p>L</p> <p>L</p> <p>L</p> <p>L</p> </body> </html>