我在图像上面有一个p-tag。为什么我不能设置p-tag的背景颜色?

时间:2012-05-30 10:10:29

标签: css

看起来好像p-tag的“背景”在图像后面。例如,参见图像顶部的内容为Projektnamn的t-tag:

http://dev.nuagency.se/illustrators/beata-boucht/

1 个答案:

答案 0 :(得分:2)

position:relative标记中提供P。写得像这样:

.mygallery p {
    background: none repeat scroll 0 0 white;
    color: black;
    margin: -50px 0 0;
    padding-left: 10px;
    position: relative;
    text-transform: capitalize;
}