Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS ::first-line Selector</title> <style> p::first-line { color: #FF0000; } </style> </head> <body> <p>This example is first-line <br /> of every paragraph.</p> <p>This example is first-line <br /> of another one paragraph.</p> </body> </html>
  Preview Arrow