Html 我如何得到一张桌子';要完整填写的单元格是什么?

Html 我如何得到一张桌子';要完整填写的单元格是什么?,html,html-table,Html,Html Table,我正在使用HTML,我正在尝试创建一个看起来像报纸的网站。当我输入内容时,我希望它完全填满单元格,就像报纸的专栏一样。这意味着某些文本将不得不稍微拉伸,因为并非每一行文本都具有完全相同的字符数 有没有办法在代码中做到这一点,或者我必须计算字符数并将一些单词连字符(我不喜欢这样做) 这是我的桌子: <table border=1 width=1200 cellspacing=6> <tr> <td width=220> &

我正在使用HTML,我正在尝试创建一个看起来像报纸的网站。当我输入内容时,我希望它完全填满单元格,就像报纸的专栏一样。这意味着某些文本将不得不稍微拉伸,因为并非每一行文本都具有完全相同的字符数

有没有办法在代码中做到这一点,或者我必须计算字符数并将一些单词连字符(我不喜欢这样做)

这是我的桌子:

<table border=1 width=1200 cellspacing=6>
    <tr>
        <td width=220>
        </td>       
        <td width=180>
        </td>   
        <td width=400>
        </td>   
        <td width=180>
        </td>   
        <td width=220>
        </td>   
    </tr>
    <tr>
        <td colspan=5 height=90><img src="mackdee_header.jpg"></img>
        </td>
    </tr>
    <tr>
        <td colspan=2 align="left">Established 2014
        </td>
        <td align="middle">"All The News That's The Shit"
        </td>
        <td colspan=2 align="right">Number 69
        </td>
    </tr>
    <tr>
        <td colspan=2 height=160>Story about Jesus
        </td>
        <td height=120>
            <div class="video-holder">
                <iframe 

src="http://player.vimeo.com/video/73292195" width="400" height="180" 

frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen>
                </iframe>
            </div>
        </td>
        <td colspan=2 height=160>Synopsis
        </td>       
    </tr>
    <tr>
        <td height=150> Monologue/Joke Of The Day
        </td>
        <td colspan=3 height=180>Abott had Costello. Penn has Teller. 

Mick - Keith. Jonny – Ed. Bonnie even had Clyde. Then how sad was this country's 

perceived state of affairs that a man with a record of extensive congressional 

service and unimaginable bravery and patriotism could agree to choose the Alaskan 

Annie Oakley as his running mate for the most important office on earth? She 

wasn't a comedic foil, a mute magician (would've been nice), an iconic rhythm 

guitarist, a jovial side-kick, or even a legendary criminal. They all compliment 

their partner by giving them better odds for success than not. But, the 

Presidency isn't Buffalo Bill's Wild West Show, and John McCain and Sarah “Ya 

Darn Tootin” Palin were soundly defeated in the 2008 election. Horrible economy; 

wars; handsome, charismatic black-man: a lot to overcome - I got it.  But the 

pandering attempt to stimulate America's bassist gender-oriented nerve endings 

didn't work.  Thanks and praise to the imaginary God of (Cont'd on Page 3)
        </td>
        <td> About The Creators
        </td height=180>
    </tr>
    <tr>
        <td colspan=2 height=180>Monologue (Cont'd)
        </td>
        <td height=180>Monthly Feature
        </td>
        <td colspan=2 height=180>Origin (Cont'd)
        </td>   
    </tr>
    <tr>
        <td colspan=2 height=80>TV Listings/Other Video
        </td>
        <td colspan=2 height=80>Monthly Feature (Cont'd)
        </td>
        <td height=80>Credits / Photos
        </td>
    </tr>
</table>

2014年成立
“所有的新闻都是狗屎”
69号
关于耶稣的故事
提要
今天的独白/笑话
艾博特有科斯特洛。佩恩有个出纳员。
米克-基思。Jonny–Ed.Bonnie甚至还有Clyde。那么这个国家的命运有多悲惨
认为一个有着广泛国会选举记录的人
服务和难以想象的勇气和爱国主义可以同意选择阿拉斯加
安妮·奥克利(Annie Oakley)是他在地球上最重要的办公室的竞选搭档吗?她
这不是一个喜剧的陪衬,一个哑巴魔术师(本来会很好),一个标志性的节奏
吉他手,一个快乐的副手,甚至是一个传奇的罪犯。他们都称赞我
通过给他们更大的成功几率来帮助他们的伴侣。但是,
总统不是布法罗比尔的西部狂野秀,约翰·麦凯恩和莎拉“是的
Darn Tootin“佩林在2008年选举中惨败。可怕的经济;
战争;英俊、有魅力的黑人男子:要克服很多——我明白了。但是
迎合试图刺激美国贝斯手性别导向的神经末梢
没用。感谢并赞美想象中的上帝(续第3页)
关于创造者
独白(续)
月刊
原产地(续)
电视节目表/其他视频
每月专题(续)
学分/照片

设计“像报纸一样”的页面最简单的方法可能是使用和

:

使用以下文本样式:

<div>
 <p>Lorem...</p>
 <p>Lorem...</p>
 <p>Lorem...</p>
 <p>Lorem...</p>
</div>

洛勒姆

洛勒姆

洛勒姆

洛勒姆

为您提供如下布局:


您能向我们展示一下您目前编写的HTML和CSS吗?
<div>
 <p>Lorem...</p>
 <p>Lorem...</p>
 <p>Lorem...</p>
 <p>Lorem...</p>
</div>