<?php



$str = '.class { width: 10px !important } .class2 {max-width:100px;} .class3 { width: 20px; } .class4 { width: 20%; }';

preg_match_all('~(?<!-)width:\h*\K\d+(?=px)~', $str, $arr);

print_r($arr[0]);