首字母大写capitalize
/* 首字母大写 */
text-transform: capitalize;
字母全部大写uppercase
/* 全部大写 */
text-transform: uppercase;
字母全部小写lowercase
/* 全部小写...
yekong
3年前 (2021-09-16)
喜欢
lowercase
/* 全部小写 */
text-transform: lowercase;
}
...
yekong
3年前 (2021-09-16)
喜欢
uppercase
/* 全部大写 */
text-transform: uppercase;
...
yekong
3年前 (2021-09-16)
喜欢
capitalize
/* 首字母大写 */
text-transform: capitalize;
...
yekong
3年前 (2021-09-16)
喜欢
italic
通过使用italic实现文字的倾斜,当然也可以使用标签来实现,比如html标签em默认文字就是倾斜的。
font-style: italic;
当我们想让倾斜的文字恢复正常,比如em不想让em标签倾斜
em {
font-style: normal;
...
yekong
3年前 (2021-09-16)
喜欢
css权重从低到高排序
规则
粒度
*
0000
标签,伪元素
0001
class,类属性值
0010
ID
0100
行内样式
1000
*< 标签,伪元素< class,类属性值< ID <行内样式
如果需要提升...
yekong
3年前 (2021-09-16)
喜欢
a{
text-decoration:none;
}
还有更加详细的设置。
a:link{
text-decoration:none;
/* 指正常的未被访问过的链接*/
}
a:visited{
text-decoration:none;
/*指已经访问过的...
yekong
3年前 (2021-09-01)
喜欢
浏览器的标准没有完全统一
.modal-dialog {
-webkit-transform: translate(-50%, -55%);
-ms-transform: translate(-50%, -55%);
-o-transform: tran...
yekong
3年前 (2021-08-28)
喜欢
marker.stationId ='123'
var marker = new BMap.Marker(new BMap.Point(data[i].lonX, data[i].latY), {
...
yekong
3年前 (2021-08-18)
喜欢
getdate() {
var that = this;
let date = new Date();
if (date.getHours() >= 0 && d...
yekong
3年前 (2021-08-18)
喜欢