JSFiddle - React, Tailwind, and code Playground

by mischah

HTML

<div class="oranger_block">
    <div class="Box_A">
        <p>Ich bin Box A</p> 
    </div>
    
</div>

CSS

.reset {
	margin-top: 0px;
	margin-left: 0px;
	background-color: rgba(0,0,0,1.00);
	}
.oranger_block {
	background-color: rgba(231,123,22,0.73);
	width: 240px;
	height: 240px;
	}
.Box_A {
	background-color: rgba(35,167,136,1.00);
	width: 50%;
	margin-top: 0px;
	margin-left: 0px;
	}
p { margin-top: 0; }