当前位置:网站首页>Cancel the down arrow of the default style of select and set the default word of select
Cancel the down arrow of the default style of select and set the default word of select
2022-07-08 00:35:00 【Super code force】
Cancel select The default style of the down arrow
The downward arrow is shown in the figure below :
Here you can set a property like this appearance:none; It can be removed select Default style for , It looks like the following figure :
Style code :
// style
<style>
select{
width: 100px;
appearance:none; // Clear default style
}
</style>
// structure
<body>
<form action="">
<select name="" id="">
<option value=""> Beijing </option>
<option value=""> wuhan </option>
<option value=""> Shanghai </option>
</select>
</form>
</body>
select Set default typeface
The default text is displayed only once , Do not appear in the options , The effect is as follows :
Style code :
<body>
<form action="">
<select>
// Key lines of code
<option selected="selected" disabled="disabled" style='display: none' value=''> Please choose gender </option>
// Options
<option> male </option>
<option> Woman </option>
</select>
</form>
</body>
边栏推荐
- 51 communicates with the Bluetooth module, and 51 drives the Bluetooth app to light up
- 他们齐聚 2022 ECUG Con,只为「中国技术力量」
- 韦东山第三期课程内容概要
- paddle入门-使用LeNet在MNIST实现图像分类方法二
- Jouer sonar
- 5g NR system messages
- Langchao Yunxi distributed database tracing (II) -- source code analysis
- Deep dive kotlin collaboration (the end of 23): sharedflow and stateflow
- Coindesk comments on the decentralization process of the wave field: let people see the future of the Internet
- Database query - what is the highest data?
猜你喜欢
Relevant methods of sorting arrays in JS (if you want to understand arrays, it's enough to read this article)
v-for遍历元素样式失效
爬虫实战(八):爬表情包
1293_FreeRTOS中xTaskResumeAll()接口的实现分析
After going to ByteDance, I learned that there are so many test engineers with an annual salary of 40W?
Notice on organizing the second round of the Southwest Division (Sichuan) of the 2021-2022 National Youth electronic information intelligent innovation competition
80% of the people answered incorrectly. Does the leaf on the apple logo face left or right?
How does the markdown editor of CSDN input mathematical formulas--- Latex syntax summary
[programming problem] [scratch Level 2] 2019.09 make bat Challenge Game
52歲的周鴻禕,還年輕嗎?
随机推荐
Qt不同类之间建立信号槽,并传递参数
paddle入门-使用LeNet在MNIST实现图像分类方法一
Is 35 really a career crisis? No, my skills are accumulating, and the more I eat, the better
他们齐聚 2022 ECUG Con,只为「中国技术力量」
3 years of experience, can't you get 20K for the interview and test post? Such a hole?
Handwriting a simulated reentrantlock
某马旅游网站开发(对servlet的优化)
韦东山第二期课程内容概要
Application practice | the efficiency of the data warehouse system has been comprehensively improved! Data warehouse construction based on Apache Doris in Tongcheng digital Department
"An excellent programmer is worth five ordinary programmers", and the gap lies in these seven key points
[OBS] the official configuration is use_ GPU_ Priority effect is true
fabulous! How does idea open multiple projects in a single window?
赞!idea 如何单窗口打开多个项目?
QT establish signal slots between different classes and transfer parameters
Notice on organizing the second round of the Southwest Division (Sichuan) of the 2021-2022 National Youth electronic information intelligent innovation competition
Summary of the third course of weidongshan
How to measure whether the product is "just needed, high frequency, pain points"
C # generics and performance comparison
什么是负载均衡?DNS如何实现负载均衡?
Linkedblockingqueue source code analysis - add and delete