CSS 居中方法

  1. 文本居中
    text-align: center;
    line-height:  (与 width 相等)
    

  1. 类型居中
    • 一般方式:
    	margin: 0 auto;
    	position: relative;
    	top: 50%;
    	transform: translateY(-50%);
    
    • flex 方式:
    	display: flex;
    	justify-content: center;
    	align-items: center;
    
posted @ 2024-02-05 12:03  TheoFan  阅读(16)  评论(0)    收藏  举报