blob: 292c0f9c9b63bad4ce70cc85074df30300e63b33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!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-left: none;
}
.skip-end {
border-right: 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="width:60px;"></div>
|