- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我在使用 CSS 应用背景图片时遇到了很大的麻烦。当我直接在 HTML style
属性中为 body 标记应用背景图像时,它起作用了。但是当我用 CSS 做同样的事情时,它不会。这是我的 CSS 和 HTML。
HTML
<!DOCTYPE html>
<!-- Start of HTML -->
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8" />
<meta name="description" content="Creating Web Applications" />
<meta name="keywords" content="party equipment" />
<meta name="author" content="Zaid Shakil" />
<!--CSS Style File Link -->
<link rel="stylesheet" href="styles/style.css" />
<!-- Title of the page -->
<title>Party Equipment</title>
</head>
<body id="homepage">
<!-- Header -->
<header>
<!-- Navigation bar -->
<nav>
<ul>
<li><a href="index.html" class="home">Home</a></li>
<li><a href="product.html" class="product">Product</a></li>
<li><a href="enquiry.html" class="enquiry">Enquiry</a></li>
<li><a href="about.html" class="about">About</a></li>
</ul>
</nav>
</header>
<img id="homepic" src="images/partyhome.png" alt="Party" />
<h1 class="hometitle">Welcome to Party Equipments Inc</h1>
<p id="homep"> Hi, We are your experts in party equipments. We are currently offering one product. Browse through our website and checkout our product page to know more about the equipment we are offering and get great deals. <br /> </p>
<div id="gallery">
<a href="http://www.bizclassifieds.com.au/sites/67/images/swfimage_3028_1.jpg"><img src="images/example1.jpg" width="500" height="375" alt="Example 1"></a><p>Reference: <a href="http://www.bizclassifieds.com.au/Childrens-Products-&-Services/Party-Equipment-Hire-Established-10-years.htm">Dancing Light</a><p>
<a href="http://g02.a.alicdn.com/kf/HTB1RbBSHVXXXXX4XVXXq6xXFXXXF/E27-6w-RGB-Led-Bulbs-Mini-Party-Light-Dance-Party-Lamps-Auto-Rotating-DJ-Stage-Disco.jpg"><img src="images/example4.jpg" width="500" height="375" alt="Example 1"></a><p>Reference: <a href="http://www.aliexpress.com/store/product/E27-3w-RGB-Led-Bulbs-Mini-Party-Light-Dance-Party-Lamps-Auto-Rotating-DJ-Stage-Disco/930043_1780846867.html">Dancing Light 2</a></p>
<a href="https://activedark.files.wordpress.com/2012/12/led_drinkglasses.jpg?w=700"><img src="images/example3.jpg" width="400" height="275" alt="Example 1"></a><p>Reference: <a href="http://activedark.com/2012/12/04/glowing-drinks-will-brighten-any-party/">Glowing Glass</a></p>
</div>
<hr />
<footer>
1. Logo: https://www.thepartybazaar.com/
<p id="footer">Copyright 2015 Designed by <a href="mailto:4962516@student.swin.edu.au"> Zaid Shakil </a></p>
</footer>
</body>
</html>
CSS
/* Navigation Element */
/*h1 {
margin-top: 100px;
}
nav {
position: fixed;
float: none;
left: 50%;
margin-left: -300px;
}*/
nav ul {
margin: 0 auto;
padding: 0 auto;
text-align: center;
}
nav ul li {
display: inline;
list-style: none;
}
nav a {
text-decoration: none;
display: inline-block;
background-color:#343434;
width: 120px;
padding: 4px;
margin-right: -4px;
font-weight: bold;
color: white;
text-transform: uppercase;
text-align: center;
}
nav a:hover {
color: white;
background-color: #CF5300 ;
}
/* Homepage Header Image */
#homepic {
display: block;
margin: 0 auto;
}
h1.hometitle {
text-align: center;
color: black;
}
#homep {
text-align: center;
font-size: 20px;
}
footer a:hover {
color: white;
}
#gallery {
display: block;
margin: 0 auto;
text-align: center;
}
#name {
text-align: center;
font-weight: bold;
font-size: 200%;
}
#number {
text-align: right;
font-family: Arial, sans-serif;
font-size: 100%;
}
#course {
color: rgb(180, 49, 0);
font-size: 100%;
font-family: Verdana;
}
#myphoto {
float: none;
border: 20px groove #333;
}
footer {
clear: both;
}
.enquiryp {
font-family: Arial, Verdana, sans-serif;
font-size: 30px;
}
aside {
border: 2px inset red;
border-radius: 100px;
margin: 0.5em;
padding: 0.5em;
width: 30%;
float:left;
text-align: center;
clear: both;
}
h1, h2, h3 {
color: red;
}
article { min-width:30em;}
#dancinglight2 {
float:left;
}
#dancinglight{
float: right;
}
#glowingglass
{
float: right;
}
/*
img {float:left; clear: both;
}*/
.features {
float: right;
}
.time {
width: 100;
height: 100;
}
.row {
width: 100;
height: 100;
}
#wed1 {
background-color: #00ff00;
}
#wed2 {
background-color: #CB8CFF;
}
#friday {
background-color: #BABABA;
}
#tues {
background-color: #4DB8FF;
}
#thu {
background-color: #FFEE8C;
}
#thu2 {
background-color: #FF8CD7;
}
#homepage {
background: url("party.jpg");
}
/*body:before, body:after {
content: "";
position: fixed;
background-image: url("party.jpg");;
left: 0;
right: 0;
height: 10px;
}
body:before {
top: 0;
}
body:after {
bottom: 0;
}
body {
border-left: 100px solid ;
border-right: 100px solid;
}*/
最佳答案
为我工作确保找到图像 css url 可以不同于 <img src="">
路径是相对于css文件设置的
如果你的结构是这样的
index.html
-css
--style.css
-img
--party.jpg
然后在你的 css 中 url 必须是
background: url("/img/party.jpg");
或
background: url("../img/party.jpg");
这里有一些值得知道的信息
关于css - 网页的背景图片,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32516545/
我正在使用 CSS background: url(stuffhere.jpeg)对于我的背景,但是当你点击其他视频时,“元素”不是页面,背景不会改变。 我试过了 和 ,并尝试为#home 和#pr
这两个 CSS 属性有区别吗: background: none; background: transparent; 它们都有效吗? 应该使用哪一个,为什么? 最佳答案 它们之间没有区别。 如果您没有
csslint 警告回退背景(十六进制或 RGB)应该在 RGBA 背景之前。"evidence="background: rgba(0, 0, 0, 0.8);/* FF3+,Saf3+,Opera
我在我正在制作的新网站上使用 Flip 插件: http://www.concept-it.be/padre (点击联系人,然后点击电子邮件地址)。 正如你所看到的,当翻转开始后,div 的背景变成灰
有没有办法使用“前后”图像作为全尺寸背景?我想会很棒!我正在尝试将此类示例用作整页大小的图像; http://www.catchmyfame.com/2009/06/25/jquery-beforea
我认为答案是否定的,但是... 有没有办法说: background-size: contain 90% 所以它的作用正是 contain 会做的,但是然后将它调整得更小一些? 最佳答案 理想的解决方
将鼠标悬停在给定文本的每个字母上将更改文本的整个字体 + 正文背景颜色。我试过了,但我的尝试失败了。相反,字体只在被悬停的字母之后发生变化,我什至不知道如何从 div 选择器中影响正文背景颜色。 .h
我想给我的 UITableView 提供背景图片,所以我尝试了这个方法: - (void)viewDidLoad { [super viewDidLoad]; // Do any additional
我正在尝试使用 Python 3.6 使用 PIL/Numpy(每个屏幕截图~0.01s)快速截取准备处理的屏幕截图。理想情况下,窗口不需要位于前台,即即使另一个窗口覆盖它,屏幕截图仍然成功。 到目前
我正在尝试做一些可能不可能的事情,但让我们看看你怎么想。这是我的代码: html { background: url(../img/pattern.png) repeat, url(../im
一位设计师想出了这种类型的背景,如下图所示。我想避免使用图像背景。因此,如果可以使用 CSS background 属性复制它,我会努力思考。 最底层只是一个线性渐变,没有问题。但是在其之上分层的圆形
当 TreeView(或应用程序)失去焦点时,如何更改所选 TreeViewItem 的背景。在这种情况下,默认情况下选定的项目具有浅灰色背景。 编辑:第一个答案后的尝试:但是找不到带有 Target
一位设计师想出了这种类型的背景,如下图所示。我想避免使用图像背景。因此,如果可以使用 CSS background 属性复制它,我会努力思考。 最底层只是一个线性渐变,没有问题。但是在其之上分层的圆形
我需要有一个带有 CSS 的背景作为附加的图像我不能让它与线性渐变一起工作。 我正在尝试以下操作,但我无法仅创建 1 个白色条纹。 div { background: #5cbcb0; bac
我有一个ListView,它有一个页眉和页脚。它们在 CardView 中的布局。以及其中必须为背景的内容列表。这是一张可以清楚看到的图片:我现在是这样的: 以及如何做: 我这样做了,ScrollVi
我目前有一个 DIV,其背景图像设置如下: background: url(../images/site/common/body-bannar-bkground.png) repeat 0 0; 如何
我有一个 slider ,需要在不使用 .style.backgroundImage 的情况下更改背景。那么我该如何通过向 slider 或其他东西添加一些类来做到这一点呢? 'use strict'
好的,所以在 photoshop 中,我创建了一个具有透明背景和一些文本的 8 位彩色图像。然后我创建了一个具有透明背景和一些文本的 16 位颜色的图像。 当我右键单击两个图像并转到属性时,它显示两个
我有一个问题困扰着我,我似乎在 Google 上找不到答案。我用一段代码创建了一个小型测试应用程序,它执行如下操作: 在 MainActivity 中,我创建了一个 SomeClass 的实例,它有一
我想做这个, 在 Android Studio 的预览中看起来不错,但在运行时我得到这个 正如您在屏幕开头看到的那样,颜色是白色,我想添加我自己的颜色,在本例中为绿色。 最初它使用的是 Cordina
我是一名优秀的程序员,十分优秀!