使用ReactJS的样式问题

时间:2016-10-13 21:58:52

标签: html css twitter-bootstrap reactjs react-bootstrap

我的网页样式有问题。我正在使用create-react-app repo作为我的反应样板和react-bootstrap repo作为我的反应引导程序。

每当我在我的页面中使用<p></p>时,它会为我中心文本,而我无法找到任何具有代码中段落样式的父div。这是该页面的代码。

class App extends Component {
    render() {
        return (
            <div>
                <div className="container">
                    <div className="col-lg-12">
                        <div className="col-lg-5">
                            <img className="img-responsive img-circle" src="http://placehold.it/120x120" alt=""/><br />
                            <h3 className="lead text-justify text-white">
                                Gulshan Jubaed Prince<br />
                                <span>Partner, Techynaf</span>
                            </h3>
                            <p>Test paragraph.</p>
                        </div>
                        <div className="col-lg-7"></div>
                        <div className="col-lg-3">
                            <div className="well"></div>
                        </div>
                    </div>
                </div>
            </div>
        );
    }

这是网络浏览器上的输出。我在样式表中添加了框边框以进行调试。

.container - 白框

h3 - 黄色框

h3 span - 绿框

h3 + p - 红框

output on browser

请注意,即使.container包含.container标记,该段落(用红色边框括起)也会显示在<p></p> div(用白框括起)之外。

这里是框边框的样式(可能对问题不重要):

h3 span{
    font-size: 17px;
    font-weight:lighter;
    color: #CCC;
    font-style: italic;
    border: 1px solid green;
}
.container{
    border: 2px solid white;
}
h3 {
    border: 1px solid yellow;
}
h3 + p {
    border: 1px solid red;
}

我希望Test Paragraph位于.container div内,位于文字Parter Techynaf

下方

2 个答案:

答案 0 :(得分:0)

请包含

clear:both;
float:left;

在你的CSS中

答案 1 :(得分:0)

请试试这个:

.container{
    overflow:hidden;
}