2017-01-10 47 views
-1

我希望它看起來像增加對內容的白框在一個背景圖像

enter image description here

我已經上傳的正是我試圖做一個圖片怎麼樣。只是爲了澄清,這是一項任務,我不想讓它爲我完成。我只是問我該如何去做這件事。其中包含文本框的白色框是我正在嘗試創建的內容。任何幫助表示讚賞,

回答

0

只需添加一個div標籤內盒中的所有元素,然後你可以使用CSS操縱divsbackground-colorpositioning等。

.white-box { 
 
    background-color: white; 
 
    color: black; 
 
    <!--other positioning attributes--> 
 
}
<div class="white-box"> 
 
    Content 
 
</div>

+0

非常感謝。這正是我需要的。 –