JSFiddle - React, Tailwind, and code Playground
by icntfan
HTML
<!DOCTYPE html>
<html>
<head>
<style>
div { width:100px; height:80px; margin:5px; float:left; background:#a9e }
</style>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<div>
<button>Kardeş!</button>
<button>Kardeş!</button>
</div>
<div>
<button>Kardeş!</button>
</div>
<div>
Yok
</div>
<div>
<button>Kardeş!</button>
<button>Kardeş!</button>
<button>Kardeş!</button>
</div>
<div>
<button>Kardeş!</button>
</div>
<script>
$("div button:only-child").text("Yalnız").css("border", "2px blue solid");
</script>
</body>
</html>