積累 CSS 點滴學習

2021-06-28 11:33:32 字數 1018 閱讀 4480

沒有過專業的培訓,用心在實戰中學習,效果也不錯!

1.background 平鋪100%,固定不動。

2.滑鼠放或者文字上有變白的效果:

#main ul.products li a:hover img

3.設定乙個區塊的圓角與陰影(比如mreald**):

-webkit-border-radius: 5px 5px 5px 5px;

-webkit-box-shadow: 0 0 5px #ccc;

border-radius: 5px 5px 5px 5px;

box-shadow: 0 0 5px #ccc;

4.  css min max-width ie8 不相容 用width=

5.設定li行高並居中

ul:  

list-style: none;

li:height: 40px;

line-height: 40px;

border-bottom: 1px dashed #cccbaf;

a:overflow: hidden;

6. 按鈕的設定 比如 我的右邊的:

border-radius: 3px;

background: #fe9900;

color: #fff;

padding: 6px 32px;

height: 28px;

line-height: 28px;

text-decoration: none;

hover:

background: #dd4b39;

原文:

git點滴積累

1 一些入門的命令 進入你要傳到遠端庫的專案下 例 cd desktop order這裡是進入桌面的order資料夾中,接著輸入git init為了讓專案資料夾下有 git 檔案,可以輸入 ls a 命令檢視 git add 將當前目錄增加到倉庫中,那個 代表當前目錄,也可以換成其他檔名 git c...

AOP小記 點滴積累學習spring

註解含義 本文基於springboot環境搭建 execution modifiers pattern?ret type pattern declaring type pattern?name pattern param pattern throws pattern?execution 方法修飾符 ...

點滴積累 使用IIS Express

iis express是乙個微軟推出的一款免費,且小型 輕量特別適合asp.net開發人員使用的web開發伺服器。在沒有iis express之前,開發人員只能使用下面兩種方案 既然已經有了這兩個選擇,為什麼還要推出iis express呢?這是由於這兩個方案的不足決定的,如下 但是iis expr...