Using Bootstrap with jQuery Mobile

前端 未结 1 1475
花落未央
花落未央 2020-12-24 13:08

Both Bootstrap (v2) and jQuery Mobile (v1.1 RC1) provides building blocks that I want to use for my application.

Bootstrap is clean, simple and wonderful. However, i

相关标签:
1条回答
  • 2020-12-24 13:28

    Answer to 1.

    What about jquery-mobile-bootstrap-theme? (from author)

    Is a theme for jquery-mobile, it has no bootstrap.

    Also, if you want bootstrap, just add bootstrap's css to your webpage, the styles should not collide with jquery mobile, unless you use bootstrap's ids in divs.

    You could also override bootstrap's css for small displays to use jquery-mobile. See this.

    // Landscape phones and down
    @media (max-width: 480px) { ... }
    

    Answer to 2.

    I think you are looking for bootstrap's 3 list group linked

    0 讨论(0)
提交回复
热议问题