Quantcast
Channel: Active questions tagged flexbox - Stack Overflow
Viewing all articles
Browse latest Browse all 1305

Wrap Text inside flex item

$
0
0

I have two div containers. The first container got a fixed with of 300px. The second div should fill the outer div. To solve this problem, I used flexboxes. My problem is now, that the second div don't wrap the content. How can I fix this problem?

Here is a JSfiddle

*{  margin: 0px;  padding: 0px;}.content{  display: flex;  flex-direction: row;  flex-wrap: wrap;  width: 300px;  padding: 10px;  border: 1px solid black;}.left{  width: 200px;  float: left;  background-color: red;  height: 20px;  margin-right: 10px;}.right{  flex-grow: 1;  float: right;  background-color: green;  height: 20px;}.clearBoth{  clear: both;}
<div class="content"><div class="left"></div><div class="right">    Here is Some Text</div><div class="clearBoth"></div></div>

Viewing all articles
Browse latest Browse all 1305

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>