Busco leyendo el número de <div data-row='960px'> establecer el ancho usando css, gracias
Código HTML:
<!DOCTYPE html>
<html lang='es'>
<head>
<meta charset='UTF-8'>
<title>Document</title>
<style>
[data-row] {display:table; margin:0 auto;}
[data-row^='960'] {width: 960px;}
[data-cel] {display:table-cell; vertical-align:top; padding:0 5px;}
</style>
</head>
<body>
<div data-row='960px'>
<div data-cel>
prueba
</div>
<div data-cel>
prueba
</div>
</div>
</body>
</html>