嗨,大家好,我正在为我的大学项目建立一个网站,我不太擅长使用Dreamweaver CS6。我是在photoshop中设计的,而我正在努力在网站中使用渐变背景。我已经尝试过几次才能使其正常工作,但是它要么重复了很多次,要么填满了一定数量的页面,但被切掉了。任何帮助将不胜感激,谢谢你提前。
这是CSS代码
html body
{
background: linear-gradient(to top, #48E7A2 0%, #86C4ED 100%);
background-size:cover;
}
最佳答案
您可以复制此代码。来自http://www.colorzilla.com/gradient-editor/
您应该在html{}
而不是body{}
上使用它
并添加height:100%;
html {
height: 100%;
background: #48e7a2; /* Old browsers */
background: -moz-linear-gradient(top, #48e7a2 0%, #86c4ed 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#48e7a2), color-stop(100%,#86c4ed)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #48e7a2 0%,#86c4ed 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #48e7a2 0%,#86c4ed 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #48e7a2 0%,#86c4ed 100%); /* IE10+ */
background: linear-gradient(to bottom, #48e7a2 0%,#86c4ed 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#48e7a2', endColorstr='#86c4ed',GradientType=0 ); /* IE6-9 */
}
DEMO
关于css - 渐变背景,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21555911/