1
0
Fork 0
firefox/testing/web-platform/tests/css/css-break/borders-007-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

22 lines
713 B
HTML

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<style>
.box {
height: 80px;
margin-bottom: 10px;
border: 10px solid hotpink;
background: yellow;
}
.skip-start {
border-right: none;
}
.skip-end {
border-left: none;
}
</style>
<p>There should be a yellow box that starts in the first column and ends in the
third. The block-start border should be in the first column, and the block-end
border should be in the third.</p>
<div class="box skip-end" style="width:90px;"></div>
<div class="box skip-start skip-end" style="width:100px;"></div>
<div class="box skip-start" style="margin-left:30px; width:60px;"></div>