blob: 69c1f6fa4bde4e11a746f1a250972f1ace373ba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html>
<meta charset=utf-8>
<head>
<style>
div {
/* This letter-spacing value only impacts a single space character. */
letter-spacing: -60px;
float: left;
border: 1px solid black;
}
span {
letter-spacing: 0;
}
</style>
</head>
<body>
<div><span>same</span> <span>line?</span></div>
|