Use width and height to define element size.
width
height
Use fixed values (px) for precise control and percentages (%) for responsive layouts.
div { width: 300px; height: 200px; } img { width: 100%; height: auto; }