blob: 6994b70f72b5201c7e2ef843a5a9ff2ee8bf3c73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
div.breakall { width: 0px; word-break: break-all; }
div.keepall { width: 0px; word-break: keep-all; }
</style>
<title>Test - word-break: break-all</title>
</head>
<body>
<div class="breakall">fox f-o</div><br />
<div class="keepall">fox f-o</div><br />
</body>
</html>
|