开发中遇到的CSS相关问题及解决

来源:互联网 发布:文笔最好的网络作家 编辑:程序博客网 时间:2024/05/16 01:16

1、禁用一个链接(a标签):

.not-active {

   pointer-events: none;
   cursor: default;

}


2、Font scaling based on width of container(字体随容器宽度或高度缩放)

相关链接:http://stackoverflow.com/questions/16056591/font-scaling-based-on-width-of-container


The values are: ‘vw’ (viewport width), ‘vh’ (viewport height), ‘vmin’ (the smaller of vw or vh), ‘vmax’ (the larger or vw or vh).

1 v == 1% of the initial containing block

using it looks like this:

p {font-size: 4vw;}
0 0