In chrome the <span class="co">
is not showing. The fiddle for the whole website is here
If I remove <p class="text-box">
or set the </p>
before the <span class="co">
all the CSS need for it to look fine is removed.
HTML for one of the parts involved
<p class="text-box">Du mister beskyttelsen ved å gjøre en av disse tingene</p>
<b><p class="text-box">Som Traitor</p></b>
<p class="text-box"
<span class="co">Skyte med våpen
<br>Prop kill</br>
<br>Goomba stomp</br>
<br>Dra ut et traitor våpen</br>
<br>Eller hvis for mange spillere er proven</br>
</span></p>
CSS
.co {
font-family: 'Consolas', 'monospace';
padding: 2px;
display: inline-block;
background-color: rgb(64,64,64);
color: white;
font-size: 12px;
border-radius: 2px;
}
.box-wrap {
width: 100%;
height: auto;
margin: 20px 0 0 0;
-webkit-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
}
.box-wrap p {
font-family: 'Open Sans', Arial, Helvetica, sans-serif;
font-size: 18px;
padding: 5px 30px;
overflow: hidden;
text-align: justify;
width: 640px;
height: auto;
background: #ffffff;
color: #717171;
}
I'm stuck in my ways and I don't know what to do
` tag
– adrichman Apr 18 '14 at 17:47tags... both opened and closed... – Kevin B Apr 18 '14 at 17:50
` note the missing `>`
– Kevin B Apr 18 '14 at 17:51