1

.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

結果のサイズを変更すると、中間の単語 (Automated) は末尾に「...」が付いた短い形式に切り捨てられます。

単語の末尾が切り捨てられるのを防ぐことはできますか?

4

2 に答える 2

1

Omar は、以前のバージョンの Jquery モバイルでは正しかったです。しかし、バージョン 1.4.1 ではスパンがなくなりました。

.ui-btn-inline {
  white-space: nowrap !important;
  overflow: visible !important;
}
于 2014-02-24T06:59:15.987 に答える