blob: 26595b4c1a7552dacdeaffd84ff0b8a962cb7b05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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.
</p>
</body>
</html>
|