Just working on basic coding skills and when I make changes in the css file the changes do not show up on non of my browsers.
Here is my index.html code:
<html>
<head>
<link ref="stylesheet" href="css/style.css?v=1.1">
</head>
<body>
<div class="ios-switch">
<div class="switch-body">
<div class="toggle"></div>
</div>
<label>iOS Switch Practice</label>
<input type="checkbox" name="check box">
</div>
</body>
</html>
Here is my style.css file:
*
{
margin:0;
padding:0;
}
.ios-switch{`enter code here`
display: flex;
flex-direction: row;
align-items: center;
margin: 10px 0;
}
.ios-switch .switch-body{
background-color: lightgray;
border: solid 1px gray;
width: 96px;
border-radius: 999px;
}
.ios-switch .switch-body .toggle{
width:48px;
height:48px;
background-color: white;
border-radius: 50%;
}
Lastly, when I looked up this issue online some suggested to go to developer tools in google chrome and I noticed that there was this error message:
VM25:1047 WebSocket connection to 'ws://localhost:8125/' failed: Error in connection establishment: net::ERR_CONNECTION_REFUSED
Thank you so much for you time.