A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 邓建军 中级黑马   /  2013-5-17 16:57  /  1314 人查看  /  3 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5.     <title>Js_Jquery</title>
  6.     <style type="text/css">
  7.         /*.redDiv {
  8.             color: red;
  9.         }*/
  10.     </style>
  11. </head>
  12. <body>
  13.     <div id="msgDiv" class="redDiv" style="font-size:42px" <span style="line-height: 1.5;">style="font-color:blue"</span><span style="line-height: 1.5;"> </span><span style="line-height: 1.5;">></span>
复制代码
如何在div中设置字体颜色,不使用CSS,我试过用style="font-color:blue",style="color:blue",都不行

评分

参与人数 1技术分 +1 收起 理由
杞文明 + 1

查看全部评分

3 个回复

正序浏览
在页面中插入CSS样式表的方法:链入外部样式表、内部样式表、导入外表样式表和内嵌样式几种。
设置字体颜色 我选择内嵌一段css代码,如下只是一个简单的小例子。你可以把它加工下让你的页面看起来更好
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Js_Jquery</title>
    <style type="text/css">
        /*.redDiv {
            color: red;
        }*/
    </style>
</head>
<body>
    <font size="3" color="red">This is some text!</font>
<font size="2" color="blue">This is some text!</font>
<font face="verdana" color="green">This is some text!</font>
</body>
回复 使用道具 举报
哥们,你的代码中Div里面少了一个>,自己检查一下,CSS可以实现的,内部style样式都是可以实现的。
回复 使用道具 举报
试试‘?
  1. <html>
  2. <head>
  3.   <title>xudaxia</title>
  4. </head>
  5. <style type="text/css">
  6. #sidebar {float:right; width:200px; height:500px; background:#ff0000;}
  7. .sidebar{color:#FFf; }
  8. </style>

  9. <body>

  10.    <DIV id="sidebar">xudaxia<span class="sidebar">xudaxia</span></div>

  11. </body>
  12. </html>
复制代码

评分

参与人数 1技术分 +1 收起 理由
杞文明 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马