- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须改编 XML 和 XSL 文件。通常我的 XSL 中只有一个表格的 CSS,但我想要不同的表格类来改变它们的外观。
在我的 XML 文件中,我调用表:
<table class="first">....
<table class="second">....
五月表在:
<component><section>
在我的 XLS CSS 中,我为所有表格预定义了这个:
.section_table {
width: 100%;
}
.section_table tr td {
margin-top: 0;
margin-bottom: 0;
}
如何调整此代码以使我的表格看起来不同?
我还在我的 XSL 文件中找到了这段代码,这对您来说可能很重要:
<xsl:template match="n1:table/@*|n1:thead/@*|n1:tfoot/@*|n1:tbody/@*|n1:colgroup/@*|n1:col/@*|n1:tr/@*|n1:th/@*|n1:td/@*">
<xsl:copy>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
<xsl:template match="n1:table">
<xsl:variable name="numColumns">
<xsl:value-of select="count(n1:thead/n1:tr/n1:th)"/>
</xsl:variable>
<table class="section_table" cellspacing="0" cellpadding="0"><!-- numColumns="{$numColumns}" -->
<xsl:apply-templates>
<xsl:with-param name="numColumns" select="$numColumns" />
</xsl:apply-templates>
</table>
</xsl:template>
<xsl:template match="n1:thead">
<thead>
<xsl:apply-templates/>
</thead>
</xsl:template>
<xsl:template match="n1:tfoot">
<xsl:param name="numColumns"/>
<tfoot>
<xsl:apply-templates>
<xsl:with-param name="numColumns" select="$numColumns" />
</xsl:apply-templates>
</tfoot>
</xsl:template>
<xsl:template match="n1:tbody">
<tbody>
<xsl:apply-templates/>
</tbody>
</xsl:template>
<xsl:template match="n1:colgroup">
<colgroup>
<xsl:apply-templates/>
</colgroup>
</xsl:template>
<xsl:template match="n1:col">
<col>
<xsl:apply-templates/>
</col>
</xsl:template>
<xsl:template match="n1:tr[position() mod 2 = 1]">
<xsl:param name="numColumns"/>
<tr class="odd">
<xsl:apply-templates>
<xsl:with-param name="numColumns" select="$numColumns" />
</xsl:apply-templates>
</tr>
</xsl:template>
<xsl:template match="n1:tr">
<xsl:param name="numColumns"/>
<tr class="even">
<xsl:apply-templates>
<xsl:with-param name="numColumns" select="$numColumns" />
</xsl:apply-templates>
</tr>
</xsl:template>
<!-- table-heading processing -->
<xsl:template match="n1:th">
<!-- sum up all given widths -->
<xsl:variable name="sum">
<xsl:call-template name="sumgivenwidths">
<xsl:with-param name="widths" select="../n1:th" />
</xsl:call-template>
</xsl:variable>
<!-- calculate table width -->
<xsl:variable name="tablewidth">
<xsl:call-template name="calctablewidth">
<xsl:with-param name="widths" select="../n1:th" />
<xsl:with-param name="sumgivenwidths" select="$sum" />
</xsl:call-template>
</xsl:variable>
<!-- width calculating -->
<xsl:variable name="cwidth">
<xsl:choose>
<xsl:when test="@styleCode != ''">
<xsl:choose>
<xsl:when test="substring-after(@styleCode, ':') < 0">
<xsl:value-of select="substring-after(@styleCode, ':-')" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring-after(@styleCode, ':')" />
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="(100 - $sum) div count(../n1:th[not(@styleCode != '')])" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<!-- 100 percent scaling -->
<xsl:variable name="scalewidth" select="concat($cwidth * 100 div $tablewidth, '%')" />
<!-- create th element -->
<xsl:element name="th">
<xsl:attribute name="width"><xsl:value-of select="$scalewidth"/></xsl:attribute>
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<!-- recursive loop through all given widths -->
<xsl:template name="sumgivenwidths">
<xsl:param name="widths" />
<xsl:param name="sum" select="0" />
<xsl:variable name="current" select="$widths[1]" />
<xsl:variable name="next" select="$widths[position()>1]" />
<xsl:variable name="currentwidth">
<xsl:choose>
<xsl:when test="substring-after($current/@styleCode,'xELGA_colw:') != ''">
<!-- absolute value -->
<xsl:choose>
<xsl:when test="substring-after($current/@styleCode, 'xELGA_colw:') < 0">
<xsl:value-of select="substring-after($current/@styleCode, 'xELGA_colw:') * -1" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring-after($current/@styleCode, 'xELGA_colw:')" />
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="0" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test="not($next)">
<xsl:value-of select="$currentwidth + $sum" />
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="sumgivenwidths">
<xsl:with-param name="widths" select="$next" />
<xsl:with-param name="sum" select="$currentwidth + $sum" />
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- recursive calculation of table width -->
<xsl:template name="calctablewidth">
<xsl:param name="widths" />
<xsl:param name="sumgivenwidths" />
<xsl:param name="sum" select="0" />
<xsl:variable name="current" select="$widths[1]" />
<xsl:variable name="next" select="$widths[position()>1]" />
<xsl:variable name="currentwidth">
<xsl:choose>
<xsl:when test="substring-after($current/@styleCode, 'xELGA_colw:') != ''">
<!-- absolute value -->
<xsl:choose>
<xsl:when test="substring-after($current/@styleCode, 'xELGA_colw:') < 0">
<xsl:value-of select="substring-after($current/@styleCode, 'xELGA_colw:') * -1" />
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="substring-after($current/@styleCode, 'xELGA_colw:')" />
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="(100 - $sumgivenwidths) div count(../n1:th[not(@styleCode != '')])" />
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test="not($next)">
<xsl:value-of select="$currentwidth + $sum" />
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="calctablewidth">
<xsl:with-param name="widths" select="$next" />
<xsl:with-param name="sumgivenwidths" select="$sumgivenwidths" />
<xsl:with-param name="sum" select="$currentwidth + $sum" />
</xsl:call-template>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="n1:td">
<!-- td-element ELGA stylecode processing -->
<xsl:variable name="transform_smallcase" select="'abcdefghijklmnopqrstuvwxyz'" />
<xsl:variable name="transform_uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
<xsl:variable name="transformed_stylecode" select="translate(@styleCode, $transform_smallcase, $transform_uppercase)" />
<xsl:variable name="tdStyleCode_Style">
<xsl:if test="contains($transformed_stylecode, 'LRULE')">
<xsl:text>text-align: left;</xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'RRULE')">
<xsl:text>text-align: right;</xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'TOPRULE')">
<xsl:text>vertical-align: top;</xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'BOTRULE')">
<xsl:text>vertical-align: bottom;</xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'BOLD')">
<xsl:text>font-weight: bold;</xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'UNDERLINE')">
<xsl:text>text-decoration: underline</xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'ITALICS')">
<xsl:text>font-style: italic;</xsl:text>
</xsl:if>
</xsl:variable>
<xsl:variable name="tdStyleCode_Class">
<xsl:if test="contains($transformed_stylecode, 'EMPHASIS')">
<xsl:text> smallcaps </xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'XELGA_BLUE')">
<xsl:text> xblue </xsl:text>
</xsl:if>
<xsl:if test="contains($transformed_stylecode, 'XELGA_RED')">
<xsl:text> xred </xsl:text>
</xsl:if>
</xsl:variable>
<td style="{$tdStyleCode_Style}" class="{$tdStyleCode_Class}">
<xsl:apply-templates/>
</td>
</xsl:template>
<xsl:template match="n1:tfoot/*/n1:td">
<xsl:param name="numColumns"/>
<td colspan="{$numColumns}">
<xsl:apply-templates/>
</td>
</xsl:template>
<xsl:template match="n1:table/n1:caption">
<span class="caption">
<xsl:apply-templates/>
</span>
</xsl:template>
最佳答案
您需要在 xsl 文件的 head 部分(html 部分)添加指向 css 文件的链接
<xsl:template match="/">
<html>
<head>
<link rel="stylesheet" type="text/css" href="my_style.css"/>
</head>
</html>
.
.
.
</xsl:tempelate>
在css文件中添加“my_style.css”
.first {
width: 100%;
}
.second tr td {
margin-top: 0;
margin-bottom: 0;
}
我已经添加了一个文件。
尝试编辑您的文件,如 this .
关于html - 不同的表格和更多的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23093908/
我正在开发一个带选项卡栏的 ios 应用程序。我的栏上有超过 5 个按钮,所以在 iphone 上我有更多的按钮。现在,假设我有这个按钮:Button1 Button2 Button3 Button4
我有一个带有 UITabBarController 的应用,其中有超过五个选项卡。 当我按更多选项卡时,我会转到moreNavigationController,它是一个UINavigationCon
我有一个导航 Controller 。 NAVC->MORE... 按钮,然后在“更多”下有一些额外的 VC。 如果我转到“更多...”下的 VC,然后转到不在“更多...”上的 VC,那么当我返回到
因此,我想出了这种方案,用于在多个线程同时具有读写访问权限的二叉树中旋转时锁定节点,这涉及每次旋转锁定四个节点,这似乎是一个很多吗?我想到了一种比我想出的方法更聪明的方法来减少所需的锁定,但谷歌并没有
所以我已经尝试了所有方法,但我似乎仍然无法将下拉内容与 dropbtn 对齐。我只希望内容始终位于更多菜单下方。 HTML: `
我正在尝试使用 expect 来自动接受在 --more-- 中提示的 EULA。 #!/usr/bin/expect spawn "./greenplum-perfmon-web-4.1.2.0-b
他们如何在下面提供的网站上制作“告诉我更多”效果。我读过 read more/less effect in jQuery,但我发现该站点的有趣之处在于,除非单击该按钮,否则无法滚动页面。 Effect
现在,Kim Stebel helped me understanding如何使用存在类型键入变量,我需要知道如何在继承中使用它们: 以下代码无法编译: class PagingListModel(s
在我的Cygwin中不可用。另一方面,提供了“ less”命令。也许Cygwin的制造商认为“更多”只是多余的。 我对此很好奇。 最佳答案 安装util-linux软件包,您将获得“更多”的信息 ht
基本上,我想知道是否有人有增加 DTU 与分片的经验。 DTU应该线性地提高性能。因此,如果您有 5 个 DTU,而您改为 10 个 DTU,那么(理论上)您应该获得大约两倍的性能。 因此,四个 SQ
我们使用 asp.net mvc、javascript 和 jQuery(托管在本地计算机上)创建了一个应用程序。基本设计是,当用户从一个页面导航到其他页面时,我们通过隐藏和显示 HTML 页面,将所
我想用 RMonad 做一些基本的事情。有没有办法使用“as monad”功能来 有一个身份 rmonad,可以应用 monad 转换器吗? 有诸如 StateT 变压器之类的常见东西吗? 向现有 m
我有一个 char*[] 数组。我需要能够为其分配字符串并再次删除它们,但我不知道: 如何检查一个元素中是否已经有一个字符串,这样我就不会覆盖它,如果它已经被占用,则继续处理下一个元素? 之后如何将其
基本上,我想知道是否有人有增加 DTU 与分片的经验。 DTU应该线性地提高性能。因此,如果您有 5 个 DTU,而您改为 10 个 DTU,那么(理论上)您应该获得大约两倍的性能。 因此,四个 SQ
我有一个程序可以同时吐出标准错误和标准输出,我想在标准错误上少运行寻呼机,但忽略标准输出。我该怎么做? 更新: 就是这样......我不想丢失标准输出......只是让它远离寻呼机 program 2
基本上,当单击具有类 "dropdown" 的链接时,我无法获取“更多...”链接来对下一个跨度的高度进行动画处理。它根本就没有动画。仅当更改为 Less... 链接并且单击 Less... 链接以折
我正在使用 ExtJS,并认为它是一个了不起的框架。但是,它们没有内置的状态图,这使得依赖于状态的应用程序开发非常痛苦。 我最近发现了这个: https://github.com/jakesgordo
我一直在研究数据结构和算法,遗憾的是在C中。我已经单独实现了一个双向链表,它保存整数并且工作正常,但是当节点(或pub)让它正常工作时我遇到了很多麻烦在本例中)保存多个不同类型的值。我可以创建一个列表
编辑拼写错误 你好, 这可能是一个愚蠢的问题,但如果它能帮助我遵循最佳实践,我不在乎:P 假设我想在 System.Data 命名空间...以及 System.Data.SqlClient 命名空间中
使用 bootstrap 3 CSS、font awesome CSS 和最新的 jQuery JS 文件。 我正在使用 javascript 在单击按钮时在另一个内容 div 之上隐藏/显示一个内容
我是一名优秀的程序员,十分优秀!