您好,我在更改放置在图像上的重力形式的文本颜色时遇到一些问题。当前代码为;
/*=================place this in the css stylesheet========*/
.row .column {
box-sizing: border-box;}
.row{
background-image: url(image);
background-size: cover;
}
.column {
float: left;
width: 50%;
padding: 10px;
height: 600px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
我似乎找不到更改字体颜色的位置。我会以错误的方式进行操作,是否需要将其放置在所见即所得的编辑器中?
答案 0 :(得分:0)
对Gravity本身不太确定,但是CSS没有为元素分配任何颜色,您可以尝试执行以下操作:
.row {
background-image: url(image);
background-size: cover;
color: red;
}
请阅读here