jQuery移动按钮大小?

前端之家收集整理的这篇文章主要介绍了jQuery移动按钮大小?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使所有这些按钮的大小相同,因为文本,两个按钮更大.

这可能使用CSS吗?

解决方法

如果这是一个jQuery Mobile问题,那么可以通过更改此类来更改按钮大小:
.ui-btn {
    width: 200px !important;
}

!jQuery Mobile需要重要,因为我们需要覆盖默认值.

工作示例:http://jsfiddle.net/Gajotres/NJ8q4/

现在,因为您正在使用标记按钮(我在上一个问题中这样做),您需要为其提供自定义ID或类.如果您只更改.ui-btn,则会更改应用内的每个按钮.所以最后这个CSS将使用这个HTML:

HTML:

<a data-role="button" class="custom-btn">Level 5</a>
<a data-role="button" class="custom-btn">Level 4</a>
<a data-role="button" class="custom-btn">Level 3</a>
<a data-role="button" class="custom-btn">Level 2</a>
<a data-role="button" class="custom-btn">Level 1</a>                
<a data-role="button" class="custom-btn">Stretch</a>
<a data-role="button" class="custom-btn">Warm up</a>

CSS:

.custom-btn {
    width: 200px !important;
}

第二个工作实例:http://jsfiddle.net/Gajotres/NJ8q4/1/

原文链接:https://www.f2er.com/jquery/241482.html

猜你在找的jQuery相关文章