css-哪句话限制了中文输出吗?

问题描述

哪句话限制了中文输出吗?

body {font-family:Arial, Helvetica, sans-serif,楷体,宋体,微软雅黑; font-size:100%; color:#333; min-width:960px; background:#f1f1f1}
.ic {border:0;float:right;background:#fff;color:#f00;width:50%;line-height:10px;font-size:10px;margin:-220% 0 0 0;overflow:hidden;padding:0}
.main {
height:35px;
width:960px;

padding:0;
margin:0 auto;
font-size:0.8125em;
line-height:1.3846em;
}

a {color:#39b9d6; outline:none}
a:hover {text-decoration:none}

.wrapper {width:100%; overflow:hidden; position:relative}
.extra-wrap {overflow:hidden}

p {margin-bottom:18px}
.p1 {margin-bottom:8px}
.p2 {margin-bottom:15px}
.p3 {margin-bottom:30px}
.p4 {margin-bottom:40px}
.p5 {margin-bottom:50px}

.reg {text-transform:uppercase}

.fleft {float:left}
.fright {float:right}

.alignright {text-align:right}
.aligncenter {text-align:center}

.color-1 {color:#fff}
.color-2 {color:#333}
.color-3 {color:#39b9d6}

.img-border {border:1px solid #fff}

/*********************************boxes**********************************/
.indent {padding:20px}
.indent-top {padding-top:24px}
.indent-left {padding-left:2px}
.indent-left2 {padding-left:40px}
.indent-left3 {padding-left:20px}
.indent-left4 {padding-left:10px}
.indent-right {padding-right:50px}

.indent-bot {margin-bottom:20px}
.indent-bot2 {margin-bottom:28px}

.prev-indent-bot {margin-bottom:10px}
.img-indent-bot {margin-bottom:25px}
.margin-bot {margin-bottom:35px}

.img-indent {float:left; margin:0 20px 0px 0}

.img-indent2 {float:left; margin:0 15px 0px 0}

.img-indent3 {float:left; margin:0 6px 0px 0}

.buttons a:hover {cursor:pointer}

.menu li a,
.list-1 li a,
.list-2 li a,
.link,
.button,
h1 a {text-decoration:none}

/*********************************header*************************************/
header {
width:100%;
position:relative;
z-index:2;
}
.row-top {
width:100%;
height:124px;
background:url(../images/row-top-tail.jpg) center top repeat-x;
overflow:hidden;
}

h1 {
padding:43px 0 0 7px;
position:relative;
float:left;
}
h1 a {
display:block;
width:299px;
height:44px;
text-indent:-9999em;
background:url(../images/logo.png) 0 0 no-repeat;
}

/***** search form *****/
#search-form {
padding:45px 10px 0 0;
float:right;
}
#search-form fieldset {
position:relative;
width:100%;
display:block;
overflow:hidden;
}
#search-form .search-field {
float:right;
width:300px;
height:34px;
background:url(../images/search-bg.jpg) 0 0 no-repeat;
}
#search-form input {
width:245px;
font-size:14px;
line-height:1.25em;
padding:9px 15px 9px;
font-family:Arial, Helvetica, sans-serif;
color:#646458;
background:none;
border:none;
margin:0;
outline:none;
}
#search-form .search-button {
display:block;
width:20px;
height:21px;
text-indent:-5000px;
background:url(../images/search-icon.png) left top no-repeat;
position:absolute;
right:7px;
top:7px;
}

/***** menu *****/
.menu-row {
width:100%;
background:url(../images/menu-row-tail.gif) center top repeat-x #178fbe;
}
.menu-bg {
width:100%;
background:url(../images/menu-bg.jpg) center top no-repeat;
}
.menu {
padding:0 0 0 0;
background:url(../images/menu-spacer.gif) left top no-repeat;
}
.menu li {
float:left;
position:relative;
background:url(../images/menu-spacer.gif) right top no-repeat;
padding-right:2px;
}
.menu li a {
display:block;
font-size:18px;
line-height:3em;
width:189px;
padding:8px 0 8px;
text-align:center;
color:#fff;
text-transform:uppercase;
letter-spacing:-1px;
}
.menu li.active a,
.menu > li > a:hover {color:#000}

解决方案

什么问题?<INPUT>不显示中文?你的字体是英文的啊:font-family:Arial, Helvetica, sans-serif;

解决方案二:

乱码?还是什么问题呢?看你的css并没有限制中文输出,你设置了中文字体

解决方案三:

只是中文字体优先级不高,可以放到最前面试试:

 body {font-family:楷体,宋体,微软雅黑,Arial, Helvetica, sans-serif; font-size:100%; color:#333; min-width:960px; background:#f1f1f1}

解决方案四:

问题是什么呢?报错吗

时间: 2024-11-08 19:46:47

css-哪句话限制了中文输出吗?的相关文章

css-哪位懂CSS的大神帮我翻译下,下面的这段话,翻译成中文

问题描述 哪位懂CSS的大神帮我翻译下,下面的这段话,翻译成中文 #bg{ display: none; position: absolute; top: 0%; left: 0%; width: 100%; height: 100%; background-color: black; z-index:1001; -moz-opacity: 0.7; opacity:.70; filter: alpha(opacity=70);} #show{display: none; position: a

轻松5句话解决JavaScript的作用域_javascript技巧

javascript 程序的每一个字节都是在这个或那个运行上下文(execution context)中执行的.你可以把这些上下文想象为代码的邻居,它们可以给每一行代码指明:从何处来,朋友和邻居又是谁.没错,这是很重要的信息,因为 javascript社会有相当严格的规则,规定谁可以跟谁交往.运行上下文则是有大门把守的社区而非其内开放的小门. 我们通常可以把这些社会边界称为作用域,并且有充足的重要性在每一位邻居的宪章里立法,而这个宪章就是我们要说的上下文的作用域链(scope chain).在特

在Unix/Linux上令(java)JVM支持中文输出

unix|中文 原文: 在Unix/Linux上令(java)JVM支持中文输出 一.在Unix/Linux上令JVM支持中文输出 如果用户使用的是UNIX的远程服务器,就会遇到中文字体在图像中输出的问题,特别是由于许多管理员并不喜欢把主机的locale定为zh(因为意味着可能出乱码或必须装微形图形终端象zhcon,但很多情况下这样的条件并不具备).大部分程序员的JAVA经验苟限于JSP脚本程序,部分熟练的程序员大概开发过中间件.servlet.applet或在WINDOWS上运行的GUI程序.

makefile中这句话的意思-------ansi -O5 -Wall

问题描述 makefile中这句话的意思-------ansi -O5 -Wall 求教一下,上图中 ** CFLAGS= -ansi -O5 -Wall**和 LDFLAGS= -ansi -lm -Wall都是什么意思啊? 解决方案 类似于定义变量,就是后面的 $(CFLAGS)都表示-ansi -O5 -Wall,而-ansi -O5 -Wall分别都是gcc编译器的一些编译选项. 解决方案二: CFLAGS只指定编译选项.LDFLAGS指定的链接选项等,都是一些g++的编译选项,然后用变

java i o-关于java的一些i/o操作请高手详细说下下面几句话的用途和使用方法

问题描述 关于java的一些i/o操作请高手详细说下下面几句话的用途和使用方法 FileOutputStream fos=new FileOutputStream("test.txt",true); BufferedOutputStream bos=new BufferedOutputStream(fos); OutputStreamWriter osr=new OutputStreamWriter(bos,"gbk"); PrintWriter pw=new Pr

link能不能自动求出一段话中最长的重复的两句话?

问题描述 link能不能自动求出一段话中最长的重复的两句话? link能不能自动求出一段话中最长的重复的两句话? 解决方案 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication2 { class Program { static void Main(string[

五句话搞定JavaScript作用域

全局作用域 -> Func函数作用域 -> inner函数作用域 当执行[ret();]时,由于其代指的是inner函数,此函数的作用域链在执行之前已经被定义为:全局作用域 -> Func函数作用域 -> inner函数作用域,所以,在执行[ret();]时,会根据已经存在的作用域链去寻找变量. JavaScript的作用域一直以来是前端开发中比较难以理解的知识点,对于JavaScript的作用域主要记住几句话,走遍天下都不怕... 一.JavaScript中无块级作用域 在Jav

&amp;amp;quot;派生类实例化时要首先要执行基类的静态构造函数&amp;amp;quot;这句话对吗?

问题描述 例如:publicclassA{staticA(){Console.WriteLine("a");}}publicclassB:A{staticvoidMain(){Bkkk=newB();}}例子运行结果为a.但是,下面这个例子:publicclassA{staticA(){Console.WriteLine("a");}}publicclassB:A{Bkk=newB();staticvoidMain(){Bkkk=newB();}}例子运行结果:不是

图片-画线那句话是什么意思

问题描述 画线那句话是什么意思 解决方案 if(...){ .... }else{ ...... } 用这种形式编写代码 解决方案二: 就是你需要一个变量记录上一个产生的随机数 然后比较它们之间哪个大,好比如下的输出 7 10 大于 4 小于 9 大于 9 等于 13 大于 10 小于 ... 解决方案三: 25个数放入数组或列表,循环之,然后判断当前的数和它后面的数的大小关系,个人理解 解决方案四: 判断先生成的值于后面紧接着生成的值的大小关系 然后进行分类 分成三类 大于后面的 小于后面的