blob: 2995b0faab4ccccbd78a136ea8c44aeca375a0cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<title>Test floating image in paragraph with br</title>
<style>
body {width: 400px}
img {width: 40%; float:right}
p {text-align: justify;}
</style>
</head>
<body>
<i>The text below should be readable:</i>
<p>
<img src="pic.png" />
This is a rather long text to increase the width.
<br>
</p>
</body>
</html>
|