我正在一个有两个绝对定位的div的网站......徽标和菜单(导航栏)
即使在多次尝试z-index操作之后,IE也将它们两者都埋没了.为什么IE不能像Firefox一样工作,甚至不能为上帝而工作?
UPDATE .......
我忘了提到这些div都定位在flash电影上.我怎么可能把它留下来?!
我以前做过这个,但还是没有掌握它.我从fontsquirrel.com下载了一个字体工具包,并试图让我的自定义字体在我的网站上运行.我尝试了很多变化,包括在线发现的"防弹"方法,我现在已经把自己搞糊涂了.有人可以查看下面的代码,并告诉我如何正确地使用@ font-face在网站上使用自定义字体?
我有一个名为fonts.css的样式表位于名为css的文件夹中.这用于调用自定义字体.字体文件位于名为fonts的根目录下的文件夹中.
样式表字体的CSS 是:
@font-face {
font-family: 'BebasNeueRegular';
src: url('../fonts/bebasneue-webfont.woff') format('woff'),
url('../fonts/bebasneue-webfont.ttf') format('truetype'),
url('../fonts/bebasneue-webfont.webfontABYyK1dn') format('svg');
font-weight: normal;
font-style: normal;
Run Code Online (Sandbox Code Playgroud)
布局等的其他样式表调用这样的字体:
}
#merchandise h1 {
font-family: "Bebas Neue", Arial, Helvetica, sans-serif;
font-size: 33px;
font-weight: normal;
line-height: normal;
text-transform: uppercase;
letter-spacing: 1px;
}
Run Code Online (Sandbox Code Playgroud)
有什么明显的吗?当然,它在我的机器上本地工作,因为我已经安装了字体.
刚注意到,如果我不选择复选框并提交,我会收到这些错误:
Warning: implode() [function.implode]: Invalid arguments passed in /home/content/o/l/t/oltvcb/html/feedback_mtg.php on line 148
Warning: Cannot modify header information - headers already sent by (output started at /home/content/o/l/t/oltvcb/html/feedback_mtg.php:148) in /home/content/o/l/t/oltvcb/html/feedback_mtg.php on line 162
我注意到表格数据实际上是在我的电子邮件中发现的......
与"选项"字段有关
下面是表单代码:
#<?php
// ------------- CONFIGURABLE SECTION ------------------------
// $mailto - set to the email address you want the form
// sent to, eg
//$mailto = "youremailaddress@example.com" ;
$mailto = 'xxxxx@xxxxxxxxx.com' ;
// $subject - set to the Subject line of the email, eg
//$subject = "Feedback Form" …
Run Code Online (Sandbox Code Playgroud)