body {
font-family: Arial, Helvetica, sans-serif;
}
table {
border-spacing: 0px;
border: 1px solid gray;
}
th,
td {
border: 1px solid gray;
font-size: 0.8rem;
padding: 6px;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
.collapsible {
background-color: #777;
color: rgb(255, 255, 255);
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: #555;
}
.collapsible:after {
content: '\002B';
color: white;
font-weight: bold;
float: right;
margin-left: 5px;
}
.active:after {
content: "\2212";
}
.content {
padding: 0 18px;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
T-Mobile Arena
Parking for Events and Hockey
Reserved Event Parking provides patrons an opportunity to pre-pay for parking at
facilities with close proximity to the arena. Prices are subject to change.
Parking passes are non-refundable. Patrons cannot purchase Reserved Parking on-site
at any of the parking facilities the night of the event.
GAME DAY PARKING VIDEO
PURCHASE RESERVED EVENT PARKING
VEGAS GOLDEN KNIGHT PARKING INFORMATION
Click here for the Game Day Parking Video
Click here for Pre-Paid Single Game Parking Map
Attention Vegas Golden Knight Fans!
There are multiple ways to get to T-Mobile Arena:
1. Prepaid Parking – Guarantee your parking spot HERE.
2. UBER/rideshare (Excalibur northwest lot – quick walk to/from arena).
3. RTC (4 VGK express routes from different spots in the valley. $2 each way).
4. Las Vegas Monorail provides quick and reliable transportation (lvmonorail.com)
5. Walking from nearby properties – New York-New York, ARIA, Park MGM, & Excalibur.
Important Facts:
1. MGM Resorts is going cashless for event parking. Acceptable forms of payment are: pre-paid parking pass, credit card or contactless parking.
2. Prepaid parking available for purchase up until 7 hours before the start of the game.
EVENT DAY PARKING MAP (NON-HOCKEY)
Click Here for Non-Hockey Event Day Parking Map
Reserved Event Parking provides patrons an opportunity to pre-pay for parking at facilities with close proximity to the arena. Reserved Event Parking is available at Park MGM, New York-New York and Aria Event Garages on a first-come, first-served basis. Prices are subject to change. Patrons cannot purchase Reserved Parking on-site at any of the parking facilities the night of the event.
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.maxHeight){
content.style.maxHeight = null;
} else {
content.style.maxHeight = content.scrollHeight + "px";
}
});
}