怎么设置select的高度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么设置select的高度相关的知识,希望对你有一定的参考价值。

下拉菜单select高度设置方式---兼容IE6/IE7/IE8/火狐,为方便作参考,这里给出一些简单的html代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>兼容IE6/IE7/IE8/火狐---下拉菜单select高度</title>

<style type="text/css">

.selectborder:1px solid #ccc;line-height:22px;color:#666;margin:-1px;padding:4px 3px;font-size:13px;width:93px;*width:85px;
.select_border*background:#fff;*border:1px solid #ccc;*padding:4px;width:83px;
.container*border:0;*position:relative;*width:83px;*height:18px;*overflow:hidden;*background:#fff;
</style>
</head>
<body>
<div class="select_border">
<div class="container">
<select name="" class="select">
<option selected="selected">区域不限</option>
<option>北京</option>
<option>天津</option>
<option>上海</option>
<option>重庆</option>
</select>
</div>
</div>

</body>
</html>
参考技术A 可以在style里面指定height,这样就会根据height来调整size

html背景图片怎么设置高度和宽度?

background-size:宽度 高度

如:给body背景写:
body
background-size:200px 300px;

html:超文本标记语言, 标准通用标记语言下的一个应用。

“ 超文本 ”就是指页面内可以包含图片、 链接,甚至音乐、 程序等非文字元素。

超文本标记语言的结构包括 “头”部分(英语:Head)、和“主体”部分(英语:Body),其中“头”部提供关于网页的信息,“主体”部分提供网页的具体内容。

参考技术A   background-size:宽度 高度;
  css3新增属性,只适用于现代浏览器。追问

不会,能详细写下吗?

追答

你要给哪个元素设置背景宽度和长度就写哪个元素。
比如给body背景写:
body
background-size:200px 300px;

参考技术B background-size: 11px 22px;

以上是关于怎么设置select的高度的主要内容,如果未能解决你的问题,请参考以下文章

如何设置select下拉菜单的高度

html页面中下拉列表怎么控制宽度

怎么调整select框得宽度和高度

html页面怎么设置页面宽度

怎么设置select中option选取后就设为默认值

select下拉菜单怎么变长?