2009-05-28 11:09:05 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>background-size: cover; background-break: bounding-box</title>
|
|
|
|
<style type="text/css">
|
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: Ahem;
|
|
|
|
src: url(../fonts/Ahem.ttf);
|
|
|
|
}
|
|
|
|
|
|
|
|
#outer
|
|
|
|
{
|
|
|
|
border: 1px solid black;
|
|
|
|
width: 10em;
|
|
|
|
}
|
|
|
|
#ahem-lines
|
|
|
|
{
|
|
|
|
font-family: Ahem;
|
|
|
|
font-size: 32px;
|
|
|
|
white-space: pre;
|
|
|
|
background-image: url(blue-8x20-green-8x20.png);
|
|
|
|
background-repeat: no-repeat;
|
2010-06-08 18:44:33 -07:00
|
|
|
background-size: cover;
|
2009-05-28 11:09:05 -07:00
|
|
|
-moz-background-inline-policy: bounding-box;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="outer">
|
|
|
|
<span id="ahem-lines"> <!-- EOL -->
|
|
|
|
<!-- mix it up for each-box and bounding-box --><!-- EOL -->
|
|
|
|
<!-- EOL -->
|
|
|
|
<!-- EOL -->
|
|
|
|
</span></div>
|
|
|
|
</body>
|
|
|
|
</html>
|