Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/85.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

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/36.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

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/amazon-s3/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 其他文本前面的某些文本(css)_Html_Css - Fatal编程技术网

Html 其他文本前面的某些文本(css)

Html 其他文本前面的某些文本(css),html,css,Html,Css,我想复制与下面截图相同的东西,我不知道如何继续。 我想要一个大字体文本(12.560),旁边我想要两行小文本 感谢您的帮助。从布局的角度来看,这应该可以帮助您开始 您可以根据需要将这些元素与任何元素交换 HTML .从布局的角度来看,这应该可以让您开始 您可以根据需要将这些元素与任何元素交换 HTML .HTML <span class='big'>12.560</span><span>title<br>dossier de press</

我想复制与下面截图相同的东西,我不知道如何继续。 我想要一个大字体文本(12.560),旁边我想要两行小文本


感谢您的帮助。

从布局的角度来看,这应该可以帮助您开始

您可以根据需要将这些元素与任何元素交换

HTML
.

从布局的角度来看,这应该可以让您开始

您可以根据需要将这些元素与任何元素交换

HTML .

HTML

<span class='big'>12.560</span><span>title<br>dossier de press</span>
您可以将整个内容包装在一个div中,以避免干扰其他布局

HTML

<span class='big'>12.560</span><span>title<br>dossier de press</span>
您可以将整个内容包装在一个div中,以避免干扰其他布局


您还可以使用表和内表来获得此效果。但是它没有CSS的魔力

<table style="background-color:rgb(244,248,253);font-family: Arial,Liberation Sans,Verdana,'Courier New', monospace">
    <tr>
    <td style="font-size:36px;font-weight:bold">
    12.560
    </td>
    <td>
    <table>
        <tr>
            <td>
            Title
            </td>
        </tr>
        <tr>
            <td style="font-weight:bold">
            Dossier de presse
            </td>
        </tr>
    </table>
    </td>
    </tr>
<table>

12.560
标题
新闻档案

您还可以使用表和内部表来获得此效果。但是它没有CSS的魔力

<table style="background-color:rgb(244,248,253);font-family: Arial,Liberation Sans,Verdana,'Courier New', monospace">
    <tr>
    <td style="font-size:36px;font-weight:bold">
    12.560
    </td>
    <td>
    <table>
        <tr>
            <td>
            Title
            </td>
        </tr>
        <tr>
            <td style="font-weight:bold">
            Dossier de presse
            </td>
        </tr>
    </table>
    </td>
    </tr>
<table>

12.560
标题
新闻档案
<table style="background-color:rgb(244,248,253);font-family: Arial,Liberation Sans,Verdana,'Courier New', monospace">
    <tr>
    <td style="font-size:36px;font-weight:bold">
    12.560
    </td>
    <td>
    <table>
        <tr>
            <td>
            Title
            </td>
        </tr>
        <tr>
            <td style="font-weight:bold">
            Dossier de presse
            </td>
        </tr>
    </table>
    </td>
    </tr>
<table>