CSS中文两端对齐以及字间距的设置很简单,以.post为例直接上代码:

    .post {text-align: justify;text-align-last: justify; 
  /* text-align-last是文本最后一行的对齐方式,主要是为了实现每行都是两端对齐 */}

  如果不喜欢最后一行的自动对齐,可以简略为:

    .post {text-align: justify;}

  加上字间距的设置,可以设置为如下代码:

    .post {text-align: justify;letter-spacing:20px;}