博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css样式使用实例
阅读量:6306 次
发布时间:2019-06-22

本文共 1115 字,大约阅读时间需要 3 分钟。

//css样式的书写

//元素ID
#tb1{width:100%;height:80px;background-color:#FFD700;padding:4px;font-family:verdana,tahoma;font-weight:bold;}
#tb2{width:100%;padding:4px;font-family:verdana,tahoma;margin:12px 0px 0px 0px;background-color:#EEEEEE;font-weight:bold;}
//类
.test{cursor:hand;
    border-right: white thin inset;
    border-top: black thin inset;
    border-left: black thin inset;
    border-bottom: white thin inset;  
    }
.post1
{
 cursor:move; background:red; color:Navy; border-right: black thin inset;
}
//元素
body
{
 background-color:Gray:
}

//css样式的运用
<html>
<head runat="server">
    <title>无标题页</title>
    //引入css样式文件
    <link type ="text/css" rel = "stylesheet"  href = StyleSheet.css />
</head>
//样式元素的应用,元素名字相同自动套用
<body>
    <form id="form1" runat="server">
    <div>
        //样式元素ID的应用
        <table id = "tb1" border = 1; type = "font-size;13pt; align;center;">
            <tr>
                //自己使用css样式style=样式
                <td style="width: 134px; height: 19px">dsfdf</td>
            </tr>
        </table>
    </div>
        <table id = "tb2" style="width: 168px">
            <tr>
                //样式类的应用
                <td class = "post1">啊啊啊啊啊啊啊啊</td>
            </tr>     
        </table>
    </form>
</body>
</html>

转载于:https://www.cnblogs.com/salonliudong/archive/2007/02/28/659052.html

你可能感兴趣的文章
git回退到某个历史版本
查看>>
ecshop
查看>>
HTML5基础(二)
查看>>
在GCE上安装Apache、tomcat等
查看>>
在Mac 系统下进行文件的显示和隐藏
查看>>
ue4(c++) 按钮中的文字居中的问题
查看>>
技能点
查看>>
读书笔记《乌合之众》
查看>>
Hadoop日记Day1---Hadoop介绍
查看>>
iOS 学习资料汇总
查看>>
centos7 yum安装jdk
查看>>
Bluedroid与BluZ,蓝牙测试方法的变动(基于bludroid和BlueZ的对比)
查看>>
接口和抽象类有什么区别
查看>>
Linux 下添加用户,修改权限
查看>>
请问view controller scene,该如何删除
查看>>
bootstrap新闻模块样式模板
查看>>
zzzzw_在线考试系统①准备篇
查看>>
App Store 审核被拒的23个理由
查看>>
剑指offer第二版-1.赋值运算符函数
查看>>
javascript 对象
查看>>