因此,我有一些文字位於頁腳區域內的圖像的下一個(右浮動)。當我將瀏覽器重新設置爲min-width:768px
時。使用瀏覽器調整大小,使用媒體查詢在圖像正下方堆疊文本
我試圖讓文本和圖像都集中對齊,並與圖像位於文本上方,但我似乎無法做到這一點。發生的一切是,圖像縮小到一個點並且不重新對齊。
下面是一個例子,我想要實現的,和我的現有代碼:
HTML:
<div id="wrapper">
<footer id="page_footer">
<p>Thanks for visiting</p>
<a href="#" target="_blank"><img alt=
"nffc_logo" src="images/logo.png"></a>
</footer>
</div><!-- wrapper -->
CSS:
#page_footer {
width: 100%;
height: auto;
position: absolute;
bottom:0; /*sticky footer*/
left: 0;
background: #282828;
color: white;
}
#page_footer img {
max-width: 3%;
height:auto;
margin: 5px;
float:right;
}
#page_footer p {
float:right;
margin-right: 10px;
margin-left: 1px;
}
然後空媒體查詢:
@media screen and (min-width:768px) { }
文本很好,但是我使用的.png圖像基本上是一個點,並且無法識別,並且出現在文本的右側 – imduncan
也許您正在將樣式(例如max-width:3%)應用於標記? –