I am developing a mobile site, so I'm using CSS to make things as liquid as possible.

I'm having an odd difficulty. Within a div container, I have a <p> that is supposed to fill the width of the div. I've tried width:auto, width:100%...nothing seems to work on Android Browser. Here are examples:

iOS (Correct):

Correct orientation

Android (Incorrect; not fully spreading; added more text than iOS version so you can see what I'm talking about):

enter image description here

Both screenshots taken from respective emulators.

Here is the odd thing, though... If I give the class applied to these <p>'s a background color, the Android browser then allows the <p> to fill the full width of its parent div (looks identical to iOS). The really odd part, though, is that if I make the background color transparent (I thought I had it tricked lol), then it goes back to doing as shown in the example.

So, I have a <p> only properly referencing its CSS if it has a background-color applied... am I stupidly overlooking something, or is this some issue with Android Browser? Any ideas how to fix it?

Thanks for your time.

link|improve this question

67% accept rate
feedback

3 Answers

up vote 1 down vote accepted

While it may not be the best solution, I finally just made an "invisible" transparent png and set it as the <p>'s background, and that fixed the issue... if you can call it fixing. :) I have to assume it is some kind of error in Android's Browser, as I tried this in every browser, desktop and mobile.

link|improve this answer
After some researching and testing I have also found this solution to be the best "fix" for now, ugly as it is. – tomvon Jan 26 at 17:09
I also have searched the internet high and low and found no other reliable solution that did not involve waaaaay too much coding. This seems to be the least brittle solution, so thanks! – exoboy Apr 11 at 20:37
feedback

the div or any element above this

could be the issue.

if you give fixed width to the p element, does it work well ?

link|improve this answer
I need the layout to be liquid, so I can't work with fixed widths. – master_gracey Nov 14 '11 at 19:47
feedback

Here is an example you can refer to it. It will help you definitely. Thanks

http://www.maxdesign.com.au/articles/css-layouts/

http://www.dynamicdrive.com/style/layouts/item/css-liquid-layout-21-fixed-fluid/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.