You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
357 B
24 lines
357 B
/* dojox.mobile.GridLayout */ |
|
.mblGridLayout { |
|
width: 100%; |
|
height: 100%; |
|
padding: 0; |
|
} |
|
.mblGridLayout > div { |
|
margin: 0; |
|
border: 0; |
|
padding: 0; |
|
float: left; |
|
min-height: 1px; |
|
} |
|
.mblGridItemFirstColumn { |
|
clear: left; |
|
} |
|
.mblGridItemTerminator { |
|
clear: both; |
|
} |
|
.mblGridItemLastItem:after { |
|
content: ""; |
|
display: block; |
|
clear: both; |
|
}
|
|
|