1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!DOCTYPE html> <meta charset="UTF-8"> <style> div { border: 1px solid red; width: 400px; } div::first-letter { font-size: 200%; } div::first-line { color: blue; } </style> <div>first line (blue)<br>second line</div>