色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

如何阻止內容可編輯& ltp & gt包裝時下推它的兄弟元素?

林雅南2年前9瀏覽0評論

我有一些這樣的HTML:

<div class="entry-content">
    <div class="entry-title-bar">
      <p id="1date" class="entry-date" onkeyup="updateentry(1)" contenteditable="">Date</p><span class="entry-date-dot">?</span>
      <p id="1title" class="entry-title" onkeyup="updateentry(1)" contenteditable="">Title</p>
      <div class="entry-buttons-container">
        <i class="fa fa-trash line-remove-entry presentation-hide" onclick="remove(1)" aria-hidden="true"></i>
        <i class="fa fa-ellipsis-h entry-menu-button presentation-hide" onclick="openSettingsDialog('1')" aria-hidden="true"></i>
        </div>
    </div><hr style="margin-top: 0;">
        <p id="1desc" class="entry-description" onkeyup="updateentry(1)" contenteditable="">Description</p>
  </div>

目前,如果你輸入足夠多的條目標題,它會自動換行,結果是這樣的:

enter image description here

對此:

enter image description here

我想要的是不要按下按鈕容器中的按鈕,讓它們停留在開始的地方。

我如何用CSS解決這個問題?