Micro letter applet style wxss problems summary (updated)

1) the addition of other style files

@import '/css/dialog.wxss';   // Note: You must end with a semicolon

 

2) Hide the scroll bar

:: - WebKit-ScrollBar { 
  width : 0 ; 
  height : 0 ; 
  Color : transparent ; 
  the display : none ; // Add solve the problem the code displayed on the IOS
 }

 

3) Elemental width

  Screen width for a total of 750rpx. Suppose not flex layout, and the like as required when several spacing elements placed in a row, and spacing element width:

  Trisection: x x port mouth port x x, the formula: 4x + 3 = 750 ports. When the distance x is 30rpx , the width of the element 210rpx

  Quartered: x x port mouth port x x port x, the formula: 5x + 4 = 750 ports. When the distance x is 30rpx , the width of the element 150rpx

  Fifths: x x port mouth port x x x opening port x, the formula: 6x + 5 = 750 ports. When the distance x is 30rpx , the width of the element 114rpx

  Sixths: x x port mouth port x x x port mouth port x x, the formula: 7x + 6 = 750 ports. When the distance x is 30rpx , the width of the element 90rpx

 

4)

 

Guess you like

Origin www.cnblogs.com/kandyvip/p/11851390.html