如何阻止jquerymobile截断标签中的文本?

时间:2013-03-31 11:58:46

标签: jquery-mobile truncation

我在.net MVC4

中运行的jquerymobile中有此页面
<div data-role="header" data-theme="b" data-position="fixed">
     <h3 style="color:white;">
            Name
    </h3>
 <a href="#" data_icon="back"> Back </a>

    <div data-role="fieldcontain" class="test_row">
        <fieldset data-role="controlgroup" data-type="horizontal" class="test_row">
            <input id="radio3" name="testType" value="2" type="radio" checked="checked" class="test_type">
            <label for="radio3" class="test_type">All tests</label>
            <input id="radio1" name="testType" value="0" type="radio" class="test_type">
            <label id="test_type_label" for="radio1" class="test_type" >Automated</label>     
            <input id="radio2" name="testType" value="1" type="radio" class="test_type">
            <label for="radio2" class="test_type">Manual</label>
        </fieldset>
    </div>
</div>

CSS

.test_row .ui-btn {
    text-align: center;
}
.ui-field-contain .ui-controlgroup-controls {
    width: 100%;
}
.ui-controlgroup-controls .ui-radio {
    width: 33.3%;
}

http://jsfiddle.net/ruds5/jsfiddle

当您调整结果大小时,中间词(自动)被截断为较短的形式,最后带有“...”。

是否可以防止在单词末尾截断?

2 个答案:

答案 0 :(得分:5)

根据更新的问题,这是解决方案。文本样式包含带有类.ui-btn-inner ,按钮文本样式被覆盖如下。

span.ui-btn-inner {
 white-space: nowrap !important;
 overflow: visible !important;
}

Demo JSfiddle

答案 1 :(得分:1)

Omar与之前版本的Jquery移动版是正确的。但是对于版本1.4.1,没有更多的跨度,使用:

.ui-btn-inline {
  white-space: nowrap !important;
  overflow: visible !important;
}