如何使用CSS垂直显示Bootstrap按钮标签?

时间:2014-03-25 06:58:47

标签: css html5 css3

我想以下列方式显示引导按钮标签 -

取值

û

中号

Ť

现在我有以下代码 -

<button name="form-submit" id="book-button" class="btn btn-primary btn-responsive btn btn-primary" type="submit">SUBMIT</button>

此代码显示“SUBMIT”。

如何垂直显示按钮标签的每个字符?

提前致谢。

1 个答案:

答案 0 :(得分:0)

你需要在每个字母后留出空格:S U B M I T

也添加css:

.btn-primary {
    float: left;
    white-space: normal;
    width: 15px;
}

Demo