using span inside a <p>

by unknown601

HTML

<div class="main-column">
    <p>text here text here text here text here text here text here <span class="blue-text">this is blue</span> text here text here text here text here text here text here text here text here text here text here text here text here text</p>
    <p>here text here text here text here text here text here text here text text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here text here
        <p>
</div>

CSS

.main-column {
    width: 273px;
    height: auto;
    float: left;
    margin-right: 30px;
    position: relative;
    overflow: visible;
    padding-top: 15px;
}
.main-column p {
    color: #666;
    font-size: 12px;
    font-family:'corporate_s_regular', sans-serif;
    text-align: left;
    line-height: 14px;
}
.main-column p .blue-text {
    color: #0461CB;
}