Тема: Як розміри одного елемента передати іншому
Для приклад написав такий код
<html>
<head>
<!--Begin debugging-->
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<!--End debugging-->
<style>
#block {text-align: center;}
#block div{margin: 10px;}
</style>
</head>
<body>
<div id="block">
<div>text</div>
<div><input type="date"></div>
<div>text</div>
<div><input type="date"></div>
<div><button type="button">click here</button></div>
</div>
</body>
</html>
Я хочу щоб кнопка в ширину була точно така сама як елемент #block input, як це можна зробити ?