gpt4 book ai didi

amazon - 如何对齐 Kindle (KF8) 的表格数据

转载 作者:行者123 更新时间:2023-12-04 21:11:08 27 4
gpt4 key购买 nike

我正在用 Kindle 格式 KF8 做我的第一步。 Publishing Guidelines声明格式支持 CSS3:

The earlier Kindle platform offered very basic support for Cascading Style Sheets (CSS). This has been significantly enhanced in KF8 with support for CSS 2/CSS 3.



现在这似乎是“非常基本的”:我想在表格单元格中右对齐文本。比较 Chrome 与 kindlegen 2.9/Kindle Previewer 2.94 的输出。 Kindle 预览完全忽略对齐。

我究竟做错了什么?

Chrome vs Kindle Preview
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Table sample</title>
<meta charset="utf-8" />
<style>
td.right {
padding: 2px 4px;
text-align : right;
}

td.left {
padding: 2px 4px;
text-align : left;
}

td.center {
padding: 2px 4px;
text-align : center;
}

h2 { color: green; }

</style>
</head>
<body>
<a name="part2_chap1"/>
<article role="main">
<header class="chapter">
<hgroup>
<h2>ALIGNMENT</h2>
</hgroup>
</header>
<div class="epigraph">
<p class="noind">How to right align table data</p>
</div>
<section class="table" id="table01">
<table>
<tr>
<th>
<i>---center---</i>
</th>
<th>
<i>---right---</i>
</th>
<th>
<i>---right---</i>
</th>
<th>
<i>---left---</i>
</th>
</tr>
<tr>
<td class="center">---centered---</td>
<td class="right">right&gt;</td>
<td class="right">right&gt;</td>
<td class="left">&lt;left</td>
</tr>
<tr>
<td class="center">centered</td>
<td class="right">right&gt;</td>
<td class="right">right&gt;</td>
<td class="left">&lt;left</td>
</tr>
</table>
</section>
</article>

</body>
</html>

最佳答案

当您必须以样式的名义进行此类变通时,这令人沮丧,但我建议将文本对齐应用于 td 中的包含元素。 ,例如

样式表片段:

td.right div {         
width: 100%;
text-align: right;
}

html片段:
<tr>
<td class="right"><div>right&gt;</div></td>
</tr>

希望这能满足您的需求,直到亚马逊整理好为止。

关于amazon - 如何对齐 Kindle (KF8) 的表格数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34250358/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com