JSFiddle - React, Tailwind, and code Playground
by amateratsu
HTML
<! DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title> Fixed Menu </ title>
<style>
.menu {
position: fixed; / * Fixed position * /
right: 10px; / * Distance from the right edge of the browser window * /
top: 20%; / * Distance from above * /
padding: 10px; / * Fields around the text * /
background: #ffe; /* Background color */
border: 1px solid # 333; / * Frame options * /
}
.text {
height: 1000px;
}
</ style>
</ head>
<body>
<div class = "menu"> Menu </ div>
<ul>
</styl
<div class = "text"> </ div>
</ body>
</ html>