Jump to content
  • 0

Стили для select


sirop
 Share

Question

Здравствуйте.

Никак не получается создать список select без рамки. Подскажите, как это можно сделать?

<select size=2 style="width: 100%; margin: 5px; border: 0">
<option value="VAK">Вакансии</option>
<option value="ACC">Афоризмы</option>
</select>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />

<style type="text/css">
div {
float: left;
overflow: hidden;
}

select {
border: none;
//margin: -1px;
}
</style>
</head>

<body>

<div>
<select>
<option value="VAK">Вакансии</option>
<option value="ACC">Афоризмы</option>
</select>
</div>

</body>
</html>

По идее работает везде.

UPD: только если size будет больше 0, то у тега option бордеры убрать не получится.

Edited by Great Rash
Link to comment
Share on other sites

  • 0
UPD: только если size будет больше 0, то у тега option бордеры убрать не получится.

Эх, жаль. Как раз и хотел этого - при size больше 0 убрать бордюры. Прийдётся искать другие способы.

Спасибо за ответы

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy