layout/xul/grid/examples/borderedrowscolumns2.xul

branch
TOR_BUG_3246
changeset 6
8bccb770b82d
equal deleted inserted replaced
-1:000000000000 0:9fdfbc4f7435
1 <?xml version="1.0"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5
6
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="gridsample.css" type="text/css"?>
9
10 <!DOCTYPE window>
11
12
13 <window orient="vertical"
14 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
15
16 <hbox>
17 <grid style="border: 2px inset gray;" id="grid">
18 <columns>
19 <column style="border: 10px solid red;"/>
20 <column/>
21 <column/>
22 </columns>
23
24 <rows style="font-size: 40pt;">
25 <row style="border: 10px solid red;">
26 <text value="Cell 1 "/>
27 <text value="Cell 2 "/>
28 <text value="Cell 3 "/>
29 </row>
30 <row>
31 <text value="Cell 4 "/>
32 <text value="Cell 5 "/>
33 <text value="Cell 6 "/>
34 </row>
35 <row>
36 <text value="Cell 7 "/>
37 <text value="Cell 8 "/>
38 <text value="Cell 9 "/>
39 </row>
40
41 </rows>
42 </grid>
43 </hbox>
44 </window>

mercurial