I'm trying to develop a mobile site. Because the resolution could be low the design has to be flexible. Now I have four items (two rows with two cols):
______________________ x _______________________
ccccccccccc / ddddddddddd | aaaaaaaaaa / bbbbbbbbbbb |
______________________ x _______________________
zzzzzzzzzzzz | xxxxxxxxxx / yyyyyyyyyyyyyy |
______________________ x _______________________
Now the text contains spaces and a slash, but at no time it makes a word break or something like that. I also tried to set a min-width, but except of FF every browser ignores this. Also I cannot set the min-width too high because of the low resolution of mobile devices.
zzzzzz / xxxxxxxx and yyyyyyyyy are put in a new line if the window or resolution is too small. I want that the structure of two rows with two columns stays there. The text can wrap.
How can I reach this?
Here is an example: http://jsfiddle.net/85PZW/ Try to make the browser window smaller and see what happens. I want to keep the initial layout (if the windows is big enough).
HTML
<div class="SubpageMenu">
<div class="row">
<div class="element first">
<a href="#">cccccccccc/ ddddddddddddddddddd</a>
</div>
<div class="element">
<a href="#">aaaaaa / bbbbb</a>
</div>
</div>
<div class="row">
<div class="element first">
<a href="#">zzzzzzzzzzzzzzz</a>
</div>
<div class="element">
<a href="#">xxxxxxxx / yyyyyyy</a>
</div>
</div>
</div>
CSS
body{
background-color:#000000;
}
.SubpageMenu .row{
border-bottom: 2px solid #FFFFFF;
background-repeat: repeat-x;
height: 43px;
}
.SubpageMenu .row .element{
width: 49%;
float: left;
text-align: center;
height: 43px;
display: table;
}
.SubpageMenu .row .element.first{
border-right: 2px solid #FFFFFF;
}
.SubpageMenu a{
font-size: 1.2em;
color: white;
width: auto;
max-width: 100%;
min-width: 160px;
height: 100%;
display: table-cell;
vertical-align: middle;
}
I don't know why there is a word wrap at cccc / dddd, but in my real example there isn't one.