Home > Web Front-end > HTML Tutorial > ionic.css interface component: form-select box_html/css_WEB-ITnose

ionic.css interface component: form-select box_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:38:49
Original
1006 people have browsed it

Select box: .item-select select

On each platform, the selection box appears differently. For example, on PC, it is a traditional drop-down box, on Android is a radio-select popup window, while on iOS it is a custom scroller that covers half of the form:

Usually always put the selection box together with the text into the list entry, use the following HTML template to create the selection box Entries:

<label class="item-input item-select">    <any class="input-label"></any>    <select>        <option>...</option>        <option>...</option>        ...    </select></label>
Copy after login

example;

<div class="scroll-content has-header">		<div class="list">			<label class="item item-input item-select">				<div class="input-label">					前端技术				</div>				<select>					<option>HTML</option>					<option selected>CSS</option>					<option>JavaScript</option>				</select>			</label>		</div>	</div>
Copy after login


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template