ASD
ASD

Reputation: 4967

jquery mobile list view Css issue when adding href link

For jquerymobile list view, I tried ui-grid-b for 3 columns. but CSS issues...jsfiddle.net/9ZBAS/1 I tried and i could see columns overlapping if i use href and working fine if not using href but without href i couldnt get the next icon button.

Upvotes: 0

Views: 130

Answers (1)

Nirmal Patel
Nirmal Patel

Reputation: 5168

You can clip the overflowing text by using the following styles:

div {
    white-space: normal;
    overflow: hidden;
}

The right-arrow is added by JQM as part of its internal/auto styling of <a> links in <li>.

If you are not using <a>, you will have to manually add the arrow by doing something like this http://jsfiddle.net/nirmaljpatel/9ZBAS/2/

Upvotes: 1

Related Questions