如何在响应式网站中调整大线地址?

时间:2016-05-02 06:54:06

标签: html css html5 twitter-bootstrap css3

如何在响应式网站中调整大线地址?请查看此链接并告诉我。" http://demo.proudtobeawoman.in/"

1 个答案:

答案 0 :(得分:-1)

一旦你有了这些碎片(让我们说你用<p>包裹),那么你可以使用bootstrap或flexbox来设计它。我会说让我们使用flexbox,所以我将执行以下操作:

    <style>

        #parent{
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        #parent p{
            flex: 0 1 auto;
            min-width: 200px;
        }
    </style>
</head>

<body>

    <div id="parent">
        <p> the first line</p>
        <p> the second line</p>
        <p> the third line</p>
        <p> the fourth line</p>
    </div>

</body>

根据您的设计,只需对最小宽度进行一些修改,您应该很高兴。