I'm developing a mobile website and one of the browsers I need to make it work on is the BlackBerry Browser on the BlackBerry 8330 (Curve) running version 4.5. I came across a weird bug when I tried to style some links to look like buttons.

If I add padding to an anchor tag, the display of the link changes, but the clickable region does not. For instance, if I move the trackball over the link, the highlight of the clickable region appears at the top of the link, and its height matches the text as if no padding was applied:

Blackberry Curve clickable region

The relevant code I am working with looks similar to this (stripped down heavily..):

<style type="text/css">
table, td { width: 100%; }
a { display: block; padding: 10px; }
</style>

<table>
  <tr><td><a href="http://www.somewhere.com">Somewhere Link 1</a></td></tr>
  <tr><td><a href="http://www.somewhere.com">Somewhere Link 2</a></td></tr>
  <tr><td><a href="http://www.somewhere.com">Somewhere Link 3</a></td></tr>
  <tr><td><a href="http://www.somewhere.com">Somewhere Link 4</a></td></tr>
  <tr><td><a href="http://www.somewhere.com">Somewhere Link 5</a></td></tr>
</table>

Any idea why this behavior is occuring? The clickable region gets increased by 10px on the top and bottom (not left and right) even though the highlight shows otherwise. The only thing I'm stumped on is the highlighted area and why it's not expanding/following the dimensions of the link.

link|improve this question
If your links are going to stay 1 line always you could try set a height and line height insted of top and bottom margin. Also maybe try removing 100% from td since the table is already 100%. This are only guesses - can't test on blackberry. – easwee Mar 9 '10 at 15:37
Unfortunately easwee, the BlackBerry Browser (pre v4.6) doesn't support the line-height property, so I cant use that solution :( – nickelleon Mar 9 '10 at 16:27
feedback

1 Answer

I don't think display:block on an inline element works correctly in the blackberry browsers. I'm working on a blackberry version on a site and I'm having the same difficulty. If you found a solution to your problem I'd love to hear it.

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.