JSFiddle - React, Tailwind, and code Playground

HTML

<form>
	<label>
        <span class="label">Your Name</span>
        <input type="text" />
    </label>
	<label>
        <span class="label">PleaseGiveYourComment</span>
	    <textarea></textarea>
    </label>
</form>

CSS

form {
    float: left;
    width: 450px;
}
label {
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
.label {
    width: 20px;
    float: left;
    clear: left;
    margin-top: 6px;
}
input, textarea {
    width: 200px;
    float: right;
    clear: right;
    padding: 10px;
    line-height: 10px;
}
input {
    height: 10px;
    line-height: 10px;
}
textarea {
    min-height: 100px;
}