Div Doesn't Expand All The Way Horizontally
Why is there white space to the left and right of my div?  render() {     return (                      
 
Solution 1:
The issue is the "container" class - Bootstrap also applies a styling of this - use "container-fluid" to get the full width.
render() {
    return (
        <div className="container-fluid intro-body">
            <div className="row ">
                <h2 className="intro-name center-block">TEXT</h2>
            </div>
        </div>
    )
}
Post a Comment for "Div Doesn't Expand All The Way Horizontally"