在我的網頁中我有一個背景和下面的塊我有一個應該繼續背景的按鈕。如何在另一個div/span上繼續div的背景?
這裏是一個例子。左圖是我的網頁現在的樣子,右圖是網頁的樣子。你可以看到背景在按鈕上繼續。
我的代碼結構是這樣的:
<div id="section-1">
<div class="shown-content">
<div class="background"></div>
<div class="content">
... here are shown contents ...
</div>
</div>
<div class="hidden-content">
... here are hidden contents ...
</div>
<div class="button-content">
<span class="button">FOLD OUT</span>
</div>
</div>
的功能是,當你按一下按鈕,它觸發JQuery的slideToggle
,它顯示/隱藏hidden-content
股利。
我的想法是將按鈕背景設置爲與內容背景相同的寬度和高度,然後將其放在適當位置。但是我有點失落,因爲我找不到這樣做的任何方式,也許你知道更好的方法。
你可以做一個jsfiddle。淨,所以我們可以看到什麼是錯的。 :) – jycr753
jycr:有一個大圖顯示什麼是錯的! ;) – Robert