JSFiddle - React, Tailwind, and code Playground

by MitulP91

HTML

<div class="qa">
            <div class="question">
                <p>             
                    <strong>Q</strong> &nbsp; &nbsp; Do you believe in SEO?
                </p>
            </div>

            <div class="answer">           
                <div class="answer_box">                
                    <p>                 
                      <strong>A</strong> &nbsp; &nbsp; Yes I Do
                    </p>
                    <p>
                        SEO is a very powerful technique to increase your site ranking in Google.
                    </p>
                    <p>
                        Also it just cool and so so so.
                    </p>
                </div>
            </div>
        </div>

CSS

.qa b {
        font-size: 50px;
    }

    .qa .answer_box {
        margin-left: 90px;
        display: inline;
    }
    .qa p { 
        font-size: 25px;    
    }