这是一个愚蠢的问题,我会给你的。对于我的生活,我无法弄清楚如何对齐文本和我的颜色选择器。我如何让所有东西都在一条线上,而不是现在的两条线上。看我的小提琴。我试过摆脱 display:block 和 clear:both 但这似乎没有用。这是我的代码:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Default functionality</title>
<script src="http://code.jquery.com/jquery-1.8.1.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/ui/1.10.1/jquery-ui.js"></script>
<link href="http://evoluteur.github.com/colorpicker/css/evol.colorpicker.css" rel="stylesheet" />
<script src="http://evoluteur.github.com/colorpicker/js/evol.colorpicker.min.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$("#color_picker").colorpicker();
});
</script>
</head>
<body>
<span>Select a color: <input id="color_picker" value="#92cddc"/></span>
</body>
</html>
请查看我的 css 和 js 小提琴(我不想通过在此处发布所有内容来混淆所有内容)