JSFiddle - React, Tailwind, and code Playground
by Matteo Colangeli
HTML
<div id="grad1" style="text-align:center;margin:auto;color:#888888;font-size:40px;font-weight:bold">
<p><br><br><br>background scalare</p>
</div>
CSS
#grad1 {
height:550px;
background: -webkit-linear-gradient(top, #000000, #595959, #898989, #AFAFAF, #898989, #595959, #000000); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(top, #000000, #595959, #898989, #AFAFAF, #898989, #595959, #000000); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(top, #000000, #595959, #898989, #AFAFAF, #898989, #595959, #000000); /* For Fx 3.6 to 15 */
background: linear-gradient(to bottom, #000000, #595959, #898989, #AFAFAF, #898989, #595959, #000000); /* Standard syntax (must be last) */
}
#grad1 p {
height: 550px;
margin-top: 200px;
margin-bottom: auto !important;
color: yellow;
}