fork download
  1. <?php
  2.  
  3. $css = <<<CSS
  4. .btn{
  5. height: 40rem;
  6. border-radius: 20rem;
  7. font-size: 18rem;
  8. font-weight: 500;
  9. text-decoration: none;
  10. padding: 0 25rem;
  11. }
  12. CSS;
  13.  
  14. '/(\d+)rem/m',
  15. function ($matches) {
  16. return $matches[1] / 10 . 'rem';
  17. },
  18. $css
  19. );
  20. echo $css;
Success #stdin #stdout 0.02s 24152KB
stdin
Standard input is empty
stdout
.btn{
	height: 4rem;
	border-radius: 2rem;	
	font-size: 1.8rem;
	font-weight: 500;
	text-decoration: none;
	padding: 0 2.5rem;
	}