如何在没有包装的情况下使用文本溢出省略号创建流体宽度标题?

Rya*_*yan 17 html css html5 css3

我需要在同一行上的标题和按钮,必要时使用省略号.

这是一个小提琴:http://jsfiddle.net/epyFT/1/

我想输出看起来像这样:

_________________________________________________________
|                                                       |
| Header goes here [button]                             |
|                                                       |
---------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)

要么

_________________________________________________________
|                                                       |
| Super, super, super, super long header... [button]    |
|                                                       |
---------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)

或者使用较小的窗口:

____________________________
|                          |
| Header goes... [button]  |
|                          |
----------------------------
Run Code Online (Sandbox Code Playgroud)

该按钮不应该浮动到下一行.我怎样才能做到这一点?

HTML

<div class="container">
    <h2>This is the header that should never wrap and elipse if it doesn't fit</h2>
    <button>Button</button>
</div>

<div class="container">
    <h2>Header</h2>
    <button>Button</button>
</div>
Run Code Online (Sandbox Code Playgroud)

CSS

.container {
    width:100%;
}
h2 {
    display:inline;
    min-width:200px;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis; word-break: break-all; word-wrap: break-word;
}
button {
    width:100px;
}
Run Code Online (Sandbox Code Playgroud)

奖金

获得第二个(固定宽度)按钮以获得正确的额外功劳.

_________________________________________________________
|                                                       |
| Header goes here [button1]                  [button2] |
|                                                       |
|                                                       |
| Super, super, super, super long... [button] [button2] |
|                                                       |
---------------------------------------------------------
Run Code Online (Sandbox Code Playgroud)

Dan*_*Dan 20

也许这样的事情有帮助吗?http://jsfiddle.net/epyFT/3/

我不确定如何使按钮与容器的无包装宽度对齐,并且仅使用单元格的百分比宽度.

新代码:

.container {
  width: 100%;
  display: table;
  table-layout: fixed;
}

.container>div {
  display: table-cell;
}

.cell1 {}

.wrap {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
}

.cell2 {
  width: 60%;
}

h2 {
  display: inline;
  min-width: 200px;
}

button {
  width: 100px;
}
Run Code Online (Sandbox Code Playgroud)
<div class="container">
  <div class="cell1">
    <div class="wrap">
      <h2>This is the header that should never wrap and elipse if it doesn't fit</h2>
    </div>
  </div>
  <div class="cell2">
    <button>Button</button>
  </div>
</div>
<div class="container">
  <h2>Header</h2>
  <button>Button</button>
</div>
Run Code Online (Sandbox Code Playgroud)


Dan*_*Dan 7

我想我找到了一个更好的解决方案:http://jsfiddle.net/epyFT/9/

HTML:

<div class="container">
    <h2>This is a very long heading that should wrap with ellipsis when too long, but have a button to it's right.</h2>
    <button>Hello.</button>
</div>

<div class="container">
    <h2>This is short.</h2>
    <button>Sup</button>
</div>
Run Code Online (Sandbox Code Playgroud)

CSS:

.container {
    display: inline-block;
   max-width:100%;
   position: relative;
}
h2 {  
    padding-right: 200px;
    box-sizing: border-box;
    width: 100%;
    display: inline-block; 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
    word-break: break-all; 
    word-wrap: break-word; 
}

button {
    position: absolute;
    width: 100px;
    right: 95px;
    top: 2em;
}
Run Code Online (Sandbox Code Playgroud)