Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/35.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_Css - Fatal编程技术网

为什么不同的语言会影响html布局?

为什么不同的语言会影响html布局?,html,css,Html,Css,这是我的留言板项目,我不知道为什么不同会影响我的css布局 我只是测试英语、汉语、泰语,它们都很好用,但只有日语会破坏我的css风格 我使用en_US、ja_JP、zh_TW、th_th php文件来更改语言 什么时候使用英语 什么时候用日语 您应该在中添加新的div。board_list这个类并添加css属性清除:两者都有 大概是这样的: 同时阅读本文:您应该在中添加新的div。board\u list此类并添加css属性清除:两者都有 大概是这样的: 也读这篇文章:展示你的代码愉快,

这是我的留言板项目,我不知道为什么不同会影响我的css布局

我只是测试英语、汉语、泰语,它们都很好用,但只有日语会破坏我的css风格

我使用en_US、ja_JP、zh_TW、th_th php文件来更改语言

什么时候使用英语

什么时候用日语


您应该在中添加新的div。board_list这个类并添加css属性
清除:两者都有

大概是这样的:


同时阅读本文:

您应该在中添加新的div。board\u list此类并添加css属性
清除:两者都有

大概是这样的:


也读这篇文章:

展示你的代码愉快,不可能说为什么没有更多的细节发生。它不是因为语言的改变而发生的,考虑到谷歌翻译,视图始终是我们的CSS代码!!!!显示您的代码愉快,不可能说为什么没有更多的细节发生。它不会发生因为语言的变化考虑谷歌翻译的观点总是保持我们的CSS代码!!!!我建议不要使用W3学校。
<li class="board_list">
                    <div class="board_img">
                        <img class="board_icon" src="./static/icon/board_icon.svg" alt="board icon">
                    </div>
                    <div class="board_text">
                        <div class="board_title">
                          <span>
                            <a href="./board.php?board_id=1">
                              <span>This was just test the title length of board name</span>
                            </a>
                          </span>
                        </div>
                        <div class="board_info">
                          <p class="p1">投稿:26</p>
                        </div>
                    </div>
                    <div class="board_latest">
                        <div class="board_latest_title">
                            <span>最新の投稿 :</span>
                            <a href="./article.php?id=32" title="This was just test the title length of board name">This was just test the title length of board name</a>
                        </div>
                        <div class="board_latest_info">
                            <a href="./member.php?user=1" title="carry0987">
                                <span>carry0987,</span>
                            </a>
                            <span>2018-04-28</span>
                        </div>
                    </div>
                </li>
                <li class="board_list">
                    <div class="board_img">
                        <img class="board_icon" src="./static/icon/board_icon.svg" alt="board icon">
                    </div>
                    <div class="board_text">
                        <div class="board_title">
                          <span>
                            <a href="./board.php?board_id=2">
                              <span>Default</span>
                            </a>
                          </span>
                        </div>
                        <div class="board_info">
                          <p class="p1">投稿:6</p>
                        </div>
                    </div>
                    <div class="board_latest">
                        <div class="board_latest_title">
                            <span>最新の投稿 :</span>
                            <a href="./article.php?id=23" title="This was just test the title length of board name">This was just test the title length of board name</a>
                        </div>
                        <div class="board_latest_info">
                            <a href="./member.php?user=2" title="carry0987y">
                                <span>carry0987y,</span>
                            </a>
                            <span>2018-04-28</span>
                        </div>
                    </div>
                </li>
.board_list {
    border-width: 1px;
    border-style: solid;
    border-color: #E9E9E9;
}