<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function selChange(){
var sel=document.getElementById('sel')
alert(sel.options[sel.selectedIndex].text)
alert(sel.options[sel.selectedIndex].value)
}
</script>
</head>
<body>
<select id="sel" onchange="selChange()" >
<option value="zhangsan">张三</option>
<option value="lisi" >李四</option>
<option value="wangwu" >王五</option>
</select>
</body>
</html>
left是指对象的左上角的x坐标margin-left,要搞明白这个问题,你先要看一下css盒模型
内容到边框的距离叫padding,叫内边距
如果一个div名叫a;左边有一个div叫b,margin为o;那么
a的margin-left是表现为a左边框到这个b的边框的距离
<span>在CSS定义中属于一个行内元素,在行内定义一个区域,也就是一行内可以被 <span>划分成好几个区域,从而实现某种特定效果。 <span>本身没有任何属性。 <div>在CSS定义中属于一个块级元素 <div>可以包含段落、标题、表格甚至其它部分。这使DIV便于建立不同集成的类,如章节、摘要或备注。在页面效果上,使用 <div>会自动换行,使用 <span>就会保持同行。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)