包含相同圖像的一半相等部分的行與 HTML 重疊 (Row with half equal section containing same image overlapped HTML)


問題描述

包含相同圖像的一半相等部分的行與 HTML 重疊 (Row with half equal section containing same image overlapped HTML)

我真的很想知道如何使用包括媒體查詢的 HTML CSS 來實現這種結構。見下圖:enter image description here

在較小的屏幕上,第 1 部分將在頂部與第 2 部分包含的圖片的一小部分重疊。您必須看到上面的圖片才能理解我的問題。主要問題是我真的很想做這樣的事情,但我不知道從哪裡開始。我不想使用負邊距和填充來破壞任何 CSS 結構。


參考解法

方法 1:

Is this what you are after? Resize the browser window (make it smaller) to see the effect.

HTML:

<div id="section1">
    &nbsp;
</div>

<div id="section2">
    <div id="overlay">
        Overlay
    </div>
</div>

CSS:

#section1 {
    float: left;
    width: 50%;
    height: 200px;
    background: grey;
}

#section2 {
    width: 50%;
    height: 200px;
    background: black;
    float: right;
    position: relative;
}

#overlay {
    position: absolute;
    top: 90px;
    left: ‑20px;
    background: red;
}

@media screen and (max‑width: 480px) {
    #section1, #section2 {
        float: none;
    }
    #overlay {
        position: absolute;
        top: ‑10px;
        left: 90px;
        background: red;
    }
 }

JSFiddle

(by RobinMadness)

參考文件

  1. Row with half equal section containing same image overlapped HTML (CC BY‑SA 2.5/3.0/4.0)

#row #css #overlapping #html






相關問題

PHP Grid 類型 Array 獲取行或列 (PHP Grid type Array get row or column)

在 Twitter 引導程序中為行添加背景顏色和填充 (Adding background color and padding to row in Twitter bootstrap)

從 GROUP BY 組中選擇具有特定內容的行 (Select a row with specific content from a GROUP BY group)

How to delete a row in Sqlite database in Android application by user at listview (How to delete a row in Sqlite database in Android application by user at listview)

mysql fetch 中的 $row 是什麼類型的變量? (What kind of variable is $row from a mysql fetch?)

Rowspan 不使用頂行 (Rowspan not using top row)

包含相同圖像的一半相等部分的行與 HTML 重疊 (Row with half equal section containing same image overlapped HTML)

使用 Oracle 10 監視哪些語句更新(以及何時)某個表行 (Monitoring which statement updates (and when) a certain table row with Oracle 10)

在表格行上調用 Dibs (Calling Dibs on a table row)

從表格視圖單元格添加視圖 (Add view from table view cell)

如何將引導程序 4 中的內容連續居中? (How to center in bootstrap 4 the content in a row?)

是否有更快的方法來檢查數據條目的符號是否與給定熊貓列的前一行中數據條目的符號不同? (Is there a faster way to check if the sign of the data entry is different than the sign of the data entry in previous row for a given pandas column?)







留言討論