为B2主题的文章阅读页添加一个格子纹理背景,效果如下图:
其实现方法也很简单,只需要把下面的css代码放入子主题css样式文件即可。
/*文章网格背景*/
.entry-content {
width: 100%;
max-width: 100%;
position: relative;
background-image: linear-gradient( 90deg,rgba(255,0,0,0.05) 5%,rgba(72,42,10,0) 0),linear-gradient( 1turn,rgba(0,0,0,0.05) 5%,rgba(255,153,44,0) 0);
background-size: 16px 16px;
box-sizing: border-box;
border-top: 1px solid #fff2f2;
margin-top: -5px;
padding-bottom: 16px;
}