Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/typo3/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
HTML中的新行_Html_Newline_Inline - Fatal编程技术网

HTML中的新行

HTML中的新行,html,newline,inline,Html,Newline,Inline,我从html开始,我遇到了一些问题,我的老师说“你可以上网搜索”,但我找不到任何东西让它工作,所以如果这是一个基本问题,很抱歉。。。 所以,我的问题是,在下面的图片中,我在图片下面有一个文本,我想放在图片旁边的文本下面,我还想在日期“2014年6月24日”下添加一些文本。。。 有一张图片可以解释我的问题: 这是我所拥有的,我的部门: <div class="inline" id="noticiaDiv"> <tr <a href="noticia

我从html开始,我遇到了一些问题,我的老师说“你可以上网搜索”,但我找不到任何东西让它工作,所以如果这是一个基本问题,很抱歉。。。 所以,我的问题是,在下面的图片中,我在图片下面有一个文本,我想放在图片旁边的文本下面,我还想在日期“2014年6月24日”下添加一些文本。。。 有一张图片可以解释我的问题:

这是我所拥有的,我的部门:

<div class="inline" id="noticiaDiv">
    <tr
        <a href="noticia1.html" title="Deco defende venda de gás de botija de marca branca" aling="left">
            <img src="documentos_apoio/gas.jpg" width="170px" height="170px" style="vertical-align: top"></img>
        <a class="titulo" href="noticia1.html" target="_top">
            Deco defende venda de gás de botija de marca branca
            <br>
        </a>
        <font class="data" target="_top">24 de Abril de 2014</font>
    </tr>
</div> 
提前感谢您的帮助

使用

<img align="left" ... >


请注意,在HTML5中,align已被弃用,应改用css

标记中的许多错误关闭锚定标记并交叉检查拼写错误,如align。更新现有内容

您可以尝试此代码

        <table>
            <tr>
                <td><img src="documentos_apoio/gas.jpg" alt="" width="170px" height="170px" style="vertical-align: top" /></td>
                <td><a class="titulo" href="noticia1.html">Deco defende venda de gás de botija de marca branca</a>
                    <br />
                    <br />
                    24 de Abril de 2014
                    <br />
                    Some Text Here
                </td>
            </tr>
        </table>



2014年12月24日
这里有一些文字

或者看

不起作用。。。如果我在新行中使用
,下一行将转到我在图像中发布的位置。。。如果我删除
它将与图像旁边的文本合并,我知道这里可能有很多错误。。。但是我完全迷失在html中。。。我正在做的是一个学校项目,我的领域是编程。。。关于网站的任何事情。。。我只是个傻瓜。。。