Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Selects all <p> elements that are placed immediately after <div> elements with CSS
Use the element+element selector to select elements placed after first specified element. You can try to run the following code to implement this,
Example
<!DOCTYPE html>
<html>
<head>
<style>
div + p {
color: white;
background-color: blue;
}
</style>
</head>
<body>
<h1>Demo Website</h1>
<h2>Fruits</h2>
<div>
<p>This is demo text.</p>
</div>
<p>Fruits are good for health.</p>
<p>Fruits makes you healthy.</p>
</body>
</html> Advertisements
