我想尝试编写一个有点透明的固定标头.
任何想法,示例代码,教程?如果可能的话,我想用CSS实现它.我想,需要使用不透明度(CSS3).
我有一个相当普遍但非常重要的问题.我为客户建立了一个主网站和一个网上商店.主要网站是在Wordpress中,我必须找到一个eShop的平台,但我们说它也是一个Wordpress主题.
我可以在托管服务器上安装2个wordpress站点吗?例如,第一个是www.company.com/website,另一个是www.company.com/shop.
我拼命地在页面的右上角添加这个小png功能区.完全像这样:http://www.thebestdesigns.com/
我检查了他们的代码,但是当我在我的代码中使用它时它会搞砸.看一看:
<style>
html,body {
background-color: #edecd8;
margin:0;
padding:0;
height:100%;
}
#container {min-height:100%; position:relative;}
#body {
padding-bottom:20px;
}
a {text-decoration: none; color: black;}
a:hover {color: #555555; border-bottom: 1px dotted black; }
#footer {
position:absolute;
bottom:0;
width:100%;
height:20px;/* Height of the footer */
background: #edecd8;
background-image:url(pattern.png);
text-align:center;
font-family: Century Gothic, sans-serif;
font-size: 14px;
font-variant: small-caps;
}
.intro {
font-family: Century Gothic, sans-serif;
font-size: 15px;
font-variant: small-caps;
}
span.bottom {
text-align: center;
width:100%;
position:absolute;
bottom:0; }
#mytable {
padding-top:30px; …Run Code Online (Sandbox Code Playgroud) 我的谦虚问题是,是否有一个在线工具来检查您的html/css和jQuery页面是否跨浏览器兼容.我有一个简单的淡入淡出效果与jquery,它在Chrome中工作得很好,但其他浏览器呢?