用css把xml文件模拟显示成表格形态的测试

本文展示了如何利用CSS将XML文件内容模拟显示成表格形式,通过定义不同的样式来呈现Student、Name、Gender和Birthday等元素,实现清晰的布局效果。在微软Edge浏览器中可以看到最终的显示结果。

xml文件如下:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?xml-stylesheet type="text/css" href="tabletest.css"?>
<!--- this file is a test for two-dimension table . -->
<Students>
   <Student Id="101">
      <Name>mark</Name>
      <Gender>male</Gender>
      <Birthday>20121201</Birthday>
   </Student>
   <Student Id="102">
      <Name>rosy</Name>
      <Gender>female</Gender>
      <Birthday>20121201</Birthday>
   </Student>
</Students>


css文件如下:

/* this file is a test for two-dimension table . */
Students
{
    background-color: #ffffff;
    width: 99%;
}
Student
{
    display: block;
    border-style: solid;
    border-color: black;
    border: 1;
    margin-top: 1pt;
    margin-bottom: 1pt;
    margin-left: 1pt;
    margin-right: 1pt;
}
Name
{
    display: inline-block;
    border-style: solid;
    border-color: black;
    border: 1;
    color: #FF0000;
    font-size: 20pt;
    width: 80pt;
}
Gender
{
    display: inline-block;
    border-style: solid;
    border-color: black;
    border: 1;
    color: #0000FF;
    font-size: 20pt;
    width: 80pt;
}
Birthday
{
    display: inline-block;
    border-style: solid;
    border-color: black;
    border: 1;
    color: #000000;
    font-size: 20pt;
    width: 100pt;
}

显示效果如下:(在微软edge浏览器中显示)

 

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值