.location:first-child { color: green; }
<div class = "location"> <p>blabla</p> </div>
<!DOCTYPE HTML> <html> <head> <style> .location:first-child { color: green; } </style> </head> <body> <div class="location"> <p>Test</p> </div> </body> </html>