Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-text/text-justify/text-justify-inter-character-atomic-inline.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Justification Method: text-justify: inter-character</title>
<link rel="author" title="Kent Tamura" href="mailto:tkent@chromium.org">
<link rel='match' href='text-justify-inter-character-atomic-inline-ref.html'>
<meta name="assert" content="text-justify:inter-character should handle a consecutive run of atomic inlines as a single typographic unit.">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
p {
font: 20px/1 Ahem;
border: 1px solid black;
padding: 10px;
width: 100px;
}
.test {
text-align-last: justify;
text-justify: inter-character;
}
.test img {
width: 20px;
height: 20px;
vertical-align: top;
}
</style>
</head>
<body>
<p class="test">X<img src="/images/blue.png"><img src="/images/blue.png">X</p>
</body>
</html>