There are possibly 3 ways you could do this, all depends on whether your access switches can handle L3 or whether you simply want to run them at L2:
-On the core switch, you'd create multiple L3 vlans (eg default gateway for all the vlans on the access switches), then simply trunk the port from the core switch to the access switch, this way you're not limited to only having a single vlan on the access switch.
-Have a /30 connection between the core and access switches (1 interface on the core switch per access switch), and create the L3 vlans on the access switch, this would depend on whether the access switch can handle L3. Could also get a little messy as you'd possibly have routing going on within the access switches.
-Each interface on the core switch would have a L3 address and connect to the access switch, all devices connected to the access switch would then use the L3 address on the core switch interface as their default gateway. Limited to only a single vlan on the access switches though.
Limitation of the bottom 2 options is that you'll only be able to run a single vlan on the access switches, whereas the top option gives you the chance to have multiple vlans, which you'd need if you had IP phones etc.
Personally, I'd use option 1. Hope this helps......