This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className { | |
-webkit-border-radius: 5px; | |
-moz-border-radius: 5px; | |
-ms-border-radius: 5px; | |
-o-border-radius: 5px; | |
border-radius: 5px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className { | |
-webkit-box-shadow: 10px 10px 5px #888888; | |
-moz-box-shadow: 10px 10px 5px #888888; | |
-ms-box-shadow: 10px 10px 5px #888888; | |
-o-box-shadow: 10px 10px 5px #888888; | |
box-shadow: 10px 10px 5px #888888; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className { | |
-webkit-border-image: url(border.png) 30 30 round; | |
-moz-border-image: url(border.png) 30 30 round; | |
-ms-border-image: url(border.png) 30 30 round; | |
-o-border-image: url(border.png) 30 30 round; | |
border-image: url(border.png) 30 30 round; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className{ | |
filter: alpha(opacity=50); | |
-webkit-opacity: 0.5; | |
-moz-opacity: 0.5; | |
-khtml-opacity: 0.5; | |
-o-opacity: 0.5; | |
opacity: 0.5; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className { | |
background: url("image/bg.jpg") no-repeat center center fixed; | |
-webkit-border-size: cover; | |
-moz-border-size: cover; | |
-ms-border-size: cover; | |
-o-border-size: cover; | |
border-size: cover; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className1 { | |
min-height: 6.5em; | |
display: table-cell; | |
vertical-align: middle; | |
} | |
.className2 { | |
height: 100px; | |
line-height: 100px; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className { | |
/* Width*/ | |
width: 200px; | |
white-space: nowrap; | |
-webkit-text-overflow: ellipsis; | |
-moz-text-overflow: ellipsis; | |
-ms-text-overflow: ellipsis; | |
-o-text-overflow: ellipsis; | |
text-overflow: ellipsis; | |
overflow: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className { | |
width: 46px; | |
height: 44px; | |
background: url(img_navsprites.gif) 0 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input[type=text] { | |
width: 100%; | |
padding: 12px 20px; | |
margin: 8px 0; | |
box-sizing: border-box; | |
} | |
input[type=password] { | |
width: 100%; | |
padding: 12px 20px; | |
margin: 8px 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tooltip { | |
position: relative; | |
display: inline-block; | |
border-bottom: 1px dotted black; | |
} | |
.tooltip .tooltiptext { | |
visibility: hidden; | |
width: 120px; | |
background-color: black; |
OlderNewer