Type at least two characters, then use the up and down arrow keys to review suggestions and Enter to choose one.
Homes for sale · Victoria BC Victoria

3 townhouses for sale in Victoria under $500,000

Median list price around $449,000 · updated daily from the MLS®

/* Track minimum depends on which column the grid is living in — one number could not serve both. SPLIT (250px): the list is 56% of the viewport minus 44px of padding, so 1024x768 gave it 528px of content. Two 280px tracks plus the 18px gap need 578px, so the old `minmax(280px, 1fr)` fell back to ONE 528px-wide card per row (560px at 1080x810). 250px fits two columns from 518px up, i.e. every tablet in landscape. 1440x900 is untouched — 762px still takes 2 tracks (3 would need 936px), the same 372px cards as before. SINGLE (290px): the list is full-width, so reusing 250px would have jumped 810px-wide iPads from 2 cards at 380px to 3 at 255px over a 24px change in viewport. 290px keeps 2-up across the whole tablet range (295px at 640, 305px at 660, 359px at 768, 392px at 834) and only goes 3-up approaching 1023, where cards are still a comfortable 318px. 290 and not 300: at 640px the content box is 608px and two 300px tracks plus the gap need 618px, which would have dropped the 640-657px band from the 2-up it has today to a single 608px card. min(100%, ...) so a single track can never overflow a container narrower than the track minimum. */