我正在尝试实现一个简单的 VF 选项卡式界面。我已经上传了一个 zip 文件,其中包含“images”文件夹中的背景图像和所需的 css
<style type="text/css">body { background-image: url("images/back.jpeg") }
以下是我的实施方式。
<apex:page id="thePage" sidebar="false" showHeader="false" tabstyle="Invoice_Statement__c" standardController="Invoice_Statement__c" standardStylesheets="false">
<apex:image url="{!$Resource.header}" width="1250" />
<apex:stylesheet value="{!URLFOR($Resource.myStyles, 'styles.css')}"/>
<style type="text/css">
p { background-color: ;}
tabPanel{ background-color:blue;}
.activeTab {background-color: #236FBD; color:white; background-image:none}
.inactiveTab { background-color: lightgrey; color:black; background-image:none}
</style>
<apex:tabPanel switchType="client" selectedTab="name1" id="theTabPanel" tabClass="activeTab" inactiveTabClass="inactiveTab">
..
..
..
</apex:tabPanel>
</apex:page>
我的问题是背景没有显示。我按照这个链接-> http://www.salesforce.com/us/developer/docs/pages/Content/pages_styling_custom.htm 我用过
<apex:image url="{!$Resource...}" width="1250" />
并且工作正常,但我无法为我的应用获取背景图片。有什么建议么?
提前致谢