问答详情
源自:12-4 我还要站个大位置 - 内联块状元素

为什么a标签文字是坚着排列的?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>内联块状元素</title>
<style type="text/css">
a{
    display:inline-block;
    width: 14px;
    height: 34px;
    background-color: red;
    text-align: center;
}
</style>
<a>中国</a>
<a>日本傻蛋</a>
<a>美国笨</a>
</body>
</html>

为什么不是横着排列的?

提问者:临下 2017-11-02 17:16

个回答

  • qq_奥特曼打小怪兽_4
    2017-11-02 17:23:29
    已采纳

    因为你用了block

  • 三水梅林
    2018-12-07 23:22:38

    日本傻蛋,美国笨,还行

  • 临下
    2017-11-02 17:30:06

    为什么中文就是竖排,数字与字母却是横排?