私の問題は電子ブックの書式設定に関係しますが、コーディングはウェブのhtmlとcssに非常に似ています。私は "{text text text}"と表示される見積もりに似たテキストボックスを持っています。これらの要素が水平に整列し、フォントサイズが変更されたときに整列を続ける必要があります。電子書籍のhtmlとcss画像とテキストの整列
改訂版HTMLとCSS:
HTML:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xml:lang="en-gb" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Lies They Teach in School</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css"/>
</head>
<body>
<h2 class="h2">O<small>UR</small> F<small>IRST</small> P<small>RESIDENT</small></h2>
<div id="bigbox">
<div class="textbox">
<div class="imageleft"><img src="images/c1.jpg" alt="Image"/></div>
<div class="imageright"><img src="images/c2.jpg" alt="Image"/></div>
<div class="noindentt">George Washington was the first president of our country.<br/><b>Don’t you believe it</b>.</div>
</div>
</div>
<p class="indent">In the formative days of our union, dating from September 1774, seven men, beginning with Peyton Randolph of Virginia, held the office of president of the Continental Congress, the first functioning government of our fledgling nation.</p>
<p class="indent">With the adoption of the Articles of Confederation, in March 1781, the Continental Congress officially became the “United States, in Congress Assembled,” marking the beginning of transition from an alliance of colonies to a central government. John Hanson of Maryland was unanimously chosen as the first presiding officer serving a full term under the Articles. Because of his prominence in the Revolution and his influence in the Congress, other potential candidates declined to run against him. Hanson is thus considered by many historians as the first “president of the United States.”</p>
<p class="indent">Hanson was the head of the government, presiding over Congress but without true executive powers, which were exercised by the Congress as a whole. Seven other “presidents” followed Hanson, including Richard Henry Lee of Virginia and John Hancock of Massachusetts, each serving an average of one year.</p>
<p class="indent">But the government under the Articles of Confederation was too inefficient for the young amalgamated country, relinquishing too much power to the several states. In response to the need for a stronger central authority, the Congress assembled for the last time in March 1789 and produced the Constitution of the United States, naming George Washington as president.</p>
<p class="indent">Thus, while George Washington was the first “president of the United States” under the Constitution, in actuality he was preceded by eight others who held that title.</p>
</body>
</html>
私はこのページに関連するCSSの上部をつかみました。
CSS:私は、Webブラウザで私のコードをプレビューする場合は
bigbox
{
margin-right:0em;
margin-left:0em;
margin-top:5em;
margin-bottom:1em;
padding-right:1.5em;
padding-left:1.5em;
border-color:#EF3F35;
}
.textbox
{
width:100%;
}
.imageleft
{
float:left;
height:100px;
}
.imageright
{
float:right;
height:100px;
}
.noindentt
{
font-size:1em;
padding-left:0.5em;
padding-right:0.5em;
padding-top:1em;
padding-bottom:1em;
text-align:justify;
background:green;
、それはよさそうです。しかし、私はそれをAdobe Digital Editionsでepubとしてプレビューすると、正しい場所にヘッダーが表示され、次にテキストボックスが表示され、次にその下の画像(かっこ)が表示されます。それが役立つならば、epubのスクリーンショットはここにありますか?
ブートストラップを使用しますか? –
こんにちはBipashant - 私はほとんどHTMLとCSSを取得:(私はブートストラップの知識がありません。 – mizsue
@マクシミリアンLaumeister - ありがとう、私は私のリビジョンが元の投稿に追加されていると思う...)私は願っています:) – mizsue