Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am striping alternate rows of ui-blocks in jQuery Mobile. There are three columns, but when a cell on a row contains a different number of wrapped lines than its neighbor the background color only fills in the lines that are occupied.

For example ui-block-a (1 line), ui-block-b (2 lines), ui-block-c (2 lines). If this were a striped row block b and c would show 2 lines of text with the background color. block A shows a blank line after the line of text to keep the heights consistent but unfortunately the background color for the stripe only shows on the first line for block-a.

Here is the CSS and the HTML

CSS

.stripe {
  background-color: #EAEAEA; 
}

HTML

<div data-role="content">   
    <div class=ui-grid-b>
      <div class=ui-block-a><strong>First Name</strong></div>
      <div class=ui-block-b><strong>Last Name</strong></div>
      <div class=ui-block-c><strong>Organization</strong></div>

      <div class="ui-block-a stripe">Allison</div>
      <div class="ui-block-b stripe">Akhnoukh</div>
      <div class="ui-block-c stripe">Education Consultant</div>

      <div class=ui-block-a>Kemi</div>
      <div class=ui-block-b>Akinsanya-Rose</div>
      <div class=ui-block-c>New York City Department of Education</div>      
    </div>
</div><!-- /content -->
share|improve this question
Can you include your jQuery, and a jsfiddle demo of the issue? – Roddy of the Frozen Peas Sep 28 '12 at 18:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.