df command

Hello All,
need help with the df command....

If I do this: df -kh /var
Filesystem Size Used Avail Use% Mounted on
/dev/sda15 17G 5.8G 9.9G 38% /var

How can I display, in the same way, the usage of each directory inside the /var?
thanks for the help!

How about du -kh /var ?

Yeah, it's almost like that....

du -h --max-depth=1 /var

thanks