Salve a tutti!
Non riesco ad applicare modifiche al css incorporato al codice html, mi da questo errore "error: xml response seems not valid". Cosa vuol dire?
Il codice è banale ed è:
Codice HTML:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<style type="text/css" media="screen">
#next {
width:200px;
height:50px;
}
#slider {
width:500px;
height:50px;
}
#buttoncontainer input {
display: block;
margin: 0 auto;
width: 100px;
}
</style>
<div id="buttoncontainer">
<input id="next" type=submit value="Next >>"/><br>
<input id="slider" type="range" min="0" max="100" step="1" value="50"/>
</div>
</body>
</html>
Grazie.