如何在Materialise css中堆叠按钮?

时间:2016-03-30 15:04:16

标签: css html5 materialize

我正在使用Materialise css Framework,在查看提供的文档之后,我无法弄清楚如何堆叠元素。

我的代码如下。

http://pastebin.com/EUchUefx

the output is this

如何将两个按钮叠放在一起?

另外,使用这个框架一般堆叠元素的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

将您的标记更改为:

<div class="row">
    <div class="col s3 grey darken-1">
        <div>
            <ul>
                <a class="waves-effect waves-light btn">FreePBX initial Setup</a>
            </ul>
            <ul>
                <a class="waves-effect waves-light btn">FreePBX Advanced Setup</a>
            </ul>
        </div>
    </div>
    <br>
    <div class="col s4">
        <div>
            <p class="flow-text">FreePBX tech was created for beginners or experts of the open source pbx system. Read our documents or watch our help videos to learn how to use the latest version of FreePBX.</p>
        </div>
    </div>
</div>

PasteBin Here