border-radius:4px;是為div新增圓角,同樣適用於input輸入框。新增完圓角後input輸入框中可能會有陰影,為input輸入框重新新增border就可以去除陰影。
<input
type
="text"
name
="bianhao"
value
=""placeholder
="請輸入商品編號"
maxlength
="10"
size
="10"
style
="width:105px; margin:0px 0px 0px 12px;height:22px;border-radius:4px; border:1px solid #dbdbdb ;"
/>
設定outline:medium; 來取消點選的外邊框
設定:focus
outline: none;border-color: #9ecaed;
box-shadow: 0 0 10px #9ecaed;
顯示點選時樣式 讓input標籤更加美觀
按鈕 邊角 相關設定
2 定義按鈕的形狀 可以應用在所有按鈕上 定義 drawable button shape.xml rectangle 矩形 corners 角度 padding 內邊距 stroke 邊界的線 android shape rectangle android bottomleftradius 10d...
設定input標籤placeholder字型顏色
有時會遇到這樣的需求,輸入框的預設提示文字與使用者輸入的文字不同。input如果只是設定input的顏色的話是達不到想要的效果的,css3有關於設定placeholder的屬性 input placeholder webkit input placeholder moz placeholder mo...
設定input的樣式
css中的 七層重疊法 即網頁內容先後順序分別為 背景邊框,負值z index,display block,浮動,display inline block,z index auto,正值z index,越往後在網頁中的層級越靠前,也就是說如果乙個z index值為1或者更高的話,它就會遮擋掉他之前的...