JSFiddle - React, Tailwind, and code Playground

by Murat Kezli

HTML

<div class="first">
Lorem İmpsum FIRST
</div>

<div class="last">
<a href="#" >LINK1</a>
<a href="#" target="_blank">LINK2</a>
<a href="#" disable>LINK3</a>
</div>

CSS

body{ background-color:black;}
div { width:calc(100% - 20px); height:60px; line-height:60px; color:red; outline:none; font-size:xx-large; padding:10px;  }

JavaScript

jQuery(".first").css("color","blue");
// OR
$(".last").css({"color":"green","background-color":"white"});

$(".last").css("display","none");
//OR
$(".last").show();
$("a").attr("href","https://www.google.com");