Navigation Links -Live preview work fine in Bracket.io but not in DW (latest release)
Thank you - any good suggestions ?
<head> HTML
<meta charset="utf-8">
<title>Excersize 2-165 - A Recipe for HTML and CSS</title>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<nav id="nav-next">
<a href="http://mat.miracosta.edu/mat165/studentwork/Bautista_Octavio/exercise2">next » </a>
</nav>
===================================Style ===========================
/*-- NAVIGATION */
nav {
position: fixed;
right: -60px;
bottom: 50%;
z-index: 100000;
}
nav a{
color: rgba(255,255,255,0.5);
text-decoration: none;
background: rgba(0,0,0,0.65);
padding: 30px 80px 30px 25px;
border-radius: 300px;
font-size: 1rem;
transition: all ease 0.5s;
}
nav a:hover {
color: red;
background: rgba(255,255,255,0.65);
}
