user2321155
user2321155

Reputation: 23

Jquery mobile grid layout with text areas

I need to create a a 2x2 grid for a mobile website where the cells are text areas. The problem is that when I do this there doesn't seem to be a way where the text boxes all join together at the inner-most corner. All I am able to achieve is two separate text boxes on top of two other separate text boxes none of which are touching vertically of horizontally. I have tried to manipulate the margins, padding, and borders, but nothing works. Thanks for your help!

Upvotes: 1

Views: 148

Answers (1)

Gajotres
Gajotres

Reputation: 57309

Working example: http://jsfiddle.net/Gajotres/cGt2J/

CSS used:

.ui-input-text {
    border-radius: 0 !important;
    margin:0 !important;
}

Upvotes: 1

Related Questions