1

我有这个 popup.htlm 文件的代码:

HTML

<body>
   <select style="width: 100%;"
      multiple id="HLSlist">
   </select>
   <span style="display:inline">
      <button type="button" id="Deletebut">Delete</button>
      <button type="button" id="OpenAllbut">Open All</button>
      <t id='VFlagged'>0</t>
   </span>
   <hr>
   <input type="checkbox" id="BlurThumbs">
   <t>Blur Thumbnails</t>
</body>

CSS

body {
    overflow-x: hidden;
    min-width: 200px;
}

t {
    font-size: 10pt;
}

我希望文字出现在右侧,就像出现在图片上一样: 在此处输入图像描述

4

1 回答 1

1

你可以简单地浮动它。

jsFiddle 这里- 它有你期望的结果。

#VFlagged {
    float: right;
    padding-right: 10px;
}

可能需要一些填充 - 我添加了 10px ..

另外..我将t元素更改为span..

于 2013-10-04T21:00:21.410 回答