原生button按钮css去掉默认样式

原生button按钮css去掉默认样式

	button{
    
    
		border: none;
		margin: 0;
		padding: 0;
		outline: none;
		border-radius: 0;
		background-color: transparent;
		line-height: normal;
	}
	button::after {
    
    
	   border: none;
	}

猜你喜欢

转载自blog.csdn.net/chb19991118/article/details/132604460