Ver Mensaje Individual
  #1 (permalink)  
Antiguo 28/05/2013, 13:54
Houdini14
 
Fecha de Ingreso: mayo-2013
Ubicación: en mi casa
Mensajes: 3
Antigüedad: 11 años
Puntos: 0
Pregunta background-color en chrome

Hola, mi problema es que al poner el background-color en chrome no me funciona y en Firefox si, la parte de css es donde pongo el backgrounf\d
este es mi codigo

<Doctype html>
<html>
<head>
<title> Entrenando en jquery y jqueyUI </title>
<meta charset="utf-8">
<link type="text/css" href="../css/jqueryUI/jquery-ui-1.10.3.custom.css" rel="stylesheet"/>
<script type="text/javascript" src="../jquery.js"></script>
<script type="text/javascript" src="../jquery-ui.js"></script>

<!--Esto de javascript y jquery -->
<script type="text/javascript">
var x;
x=$(document);
x.ready(inicio);
function inicio(){ var x=$("#mueve"); }
x.draggable();

</script>

<!-- y esto de css -->

<style type="text/css">
#mueve {width: 100;height: 100; border: 1px solid yellow; background-color: #6600FF}

</style>

</head>

<body>

<div id="mueve"><mueveme</div>

</body>

</html>



hay alguna manera de hacer que funcione en chrome?

muchas gracias de antemano