0

我正在学习 railstutorial.org,最近决定创建自己的博客。我做到了,现在看起来 这个 问题与文章有关,其中的文字在一行中,我不明白为什么

我的 custom.css.scss 文件:

@import "bootstrap";

/* universal */

$grayMediumLight: #eaeaea;

html {
overflow-y: scroll;
}

 body {
padding-top: 60px;
}

section {
overflow: auto;
}

textarea {
resize: both;
}

 .center    {
text-align: center;
h1 {
margin-bottom: 10px;
}
}

 p {
text-align: left;
}   

PS我渴望 这个

4

1 回答 1

0

这是由于您添加到部分和 html 的溢出。删除这些,然后看看你有什么。400px还要为容纳博客文章的容器设置宽度。

于 2013-07-27T15:26:33.830 回答