Backspace to Offset Calculator

.bto-calculator-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 0 auto; padding: 20px; background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 8px; } .bto-header { text-align: center; margin-bottom: 30px; } .bto-header h2 { color: #333; margin: 0; font-size: 24px; } .bto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } @media (max-width: 600px) { .bto-grid { grid-template-columns: 1fr; } } .bto-input-group { margin-bottom: 15px; } .bto-input-group label { display: block; margin-bottom: 5px; font-weight: 600; color: #444; } .bto-input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; box-sizing: border-box; } .bto-input-group small { display: block; color: #666; font-size: 12px; margin-top: 4px; } .bto-btn-container { grid-column: 1 / -1; text-align: center; margin-top: 10px; } .bto-calculate-btn { background-color: #0073aa; color: white; border: none; padding: 12px 30px; font-size: 16px; border-radius: 4px; cursor: pointer; transition: background-color 0.2s; } .bto-calculate-btn:hover { background-color: #005177; } .bto-results { grid-column: 1 / -1; background: #fff; padding: 20px; border-radius: 4px; border: 1px solid #ddd; margin-top: 20px; display: none; } .bto-result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; } .bto-result-row:last-child { border-bottom: none; } .bto-result-value { font-weight: bold; color: #0073aa; font-size: 18px; } .bto-result-highlight { font-size: 28px; color: #2c3e50; } .bto-article { margin-top: 40px; line-height: 1.6; color: #333; } .bto-article h3 { margin-top: 25px; color: #2c3e50; } .bto-article ul { margin-bottom: 20px; padding-left: 20px; } .bto-article li { margin-bottom: 10px; } .error-msg { color: #d63638; font-size: 14px; margin-top: 5px; display: none; }

Wheel Backspace to Offset Calculator

Convert your rim's backspacing measurements into millimeters offset.

The width stamped on the rim (bead to bead).
Distance from mounting surface to back edge.
Please enter valid numeric values for both fields.
Calculated Offset: 0 mm
Calculated Centerline: 0 in
Fitment Type:

Understanding Backspace vs. Offset

When selecting aftermarket wheels for your vehicle, understanding the relationship between backspacing and offset is critical to prevent suspension interference or tire rubbing. While both measure the wheel's mounting position, they use different reference points.

Backspacing is the distance from the back edge of the wheel (the flange) to the mounting surface of the hub. It is typically measured in inches. Higher backspacing moves the wheel further into the wheel well.

Offset is the distance from the exact centerline of the wheel to the mounting surface. It is typically measured in millimeters.

  • Zero Offset: The mounting surface is even with the centerline.
  • Positive Offset: The mounting surface is closer to the front (street side) of the wheel. This is common on modern FWD and many RWD vehicles.
  • Negative Offset: The mounting surface is closer to the back (brake side) of the wheel. This creates a "deep dish" look and is common on lifted trucks and older muscle cars.

How This Calculation Works

To convert backspace to offset, we must account for the physical width of the wheel. The "rated width" (e.g., 9 inches) is measured from bead seat to bead seat. However, the physical width includes the flanges, which typically adds about 1 inch to the total width.

The formula used in this calculator is:

Offset (mm) = (Backspace – ((Wheel Width + 1) / 2)) × 25.4

Why It Matters

If you get the offset wrong, two things can happen:

  • Too much positive offset (or high backspace): The wheel sits too far inside. The tire may rub against control arms, struts, or the inner wheel well liner.
  • Too much negative offset (or low backspace): The wheel sticks out too far. This puts extra stress on wheel bearings and may cause the tire to hit the fender when the suspension compresses.
function calculateOffset() { // Get input elements var widthInput = document.getElementById('wheelWidth'); var backspaceInput = document.getElementById('backspaceVal'); var resultArea = document.getElementById('resultsArea'); var errorDisplay = document.getElementById('errorDisplay'); // Parse values var width = parseFloat(widthInput.value); var backspace = parseFloat(backspaceInput.value); // Validation if (isNaN(width) || isNaN(backspace) || width <= 0 || backspace 0.5) { typeText = "Positive (Tucked)"; } else if (offsetMm < -0.5) { typeText = "Negative (Deep Dish)"; } // Display Results document.getElementById('offsetResult').innerHTML = offsetMm.toFixed(1) + " mm"; document.getElementById('centerlineResult').innerHTML = centerline.toFixed(2) + " in"; document.getElementById('fitmentType').innerHTML = typeText; resultArea.style.display = 'block'; }

Leave a Reply

Your email address will not be published. Required fields are marked *