Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Background and Borders Test: box-shadow and overlapping of adjacent text</title>
<link rel="author" title="GĂ©rard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="match" href="reference/box-shadow-overlapping-003-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<meta content="Box shadows do not affect layout. Box shadows take up no space. Box shadows do not affect or influence normal flow of boxes. Therefore, box shadows can 'collide' with other boxes and can overlap other boxes (inline box or line box) or be overlapped by other boxes. This test checks that the background of the following line box overlaps the box-shadow of an inline non-replaced box whose box-shadow expands onto and over the following line box. In this test, the box shadow of div#outer-box-shadow is red and protudes out and below onto the following line box. But since the glyphs of div#following-line-box are green, then such green color will overlap the red box shadow of div#outer-box-shadow." name="assert">
<style>
div
{
color: green;
float: left;
font-family: Ahem;
font-size: 100px;
line-height: 1;
}
div#outer-box-shadow
{
box-shadow: 0em 1em red;
}
/*
1st <length>
Specifies the horizontal offset of the shadow. A positive value
draws a shadow that is offset to the right of the box, a negative
length to the left.
2nd <length>
Specifies the vertical offset of the shadow. A positive value
offsets the shadow down, a negative one up.
*/
div#following-line-box
{
clear: left;
}
</style>
<p>Test passes if there is a filled green rectangle and <strong>no red</strong>.
<div id="outer-box-shadow">OVLPED</div>
<div id="following-line-box">OVLPNG</div>