Source code

Revision control

Copy as Markdown

Other Tools

<!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>