{"id":1666,"date":"2026-05-15T07:00:05","date_gmt":"2026-05-15T07:00:05","guid":{"rendered":"https:\/\/donhit.com\/en\/?p=1666"},"modified":"2026-05-15T07:00:05","modified_gmt":"2026-05-15T07:00:05","slug":"wheel-offset","status":"publish","type":"post","link":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/","title":{"rendered":"Wheel Offset Calculator"},"content":{"rendered":"<div class=\"container123\">\r\n        <h2>Wheel Offset Calculator<\/h2>\r\n        \r\n        <div class=\"unit-toggle\">\r\n            <button class=\"unit-btn active\" onclick=\"setUnit('mm')\" id=\"mmBtn\">Millimeters<\/button>\r\n            <button class=\"unit-btn\" onclick=\"setUnit('inches')\" id=\"inchBtn\">Inches<\/button>\r\n        <\/div>\r\n\r\n        <div class=\"input-group\">\r\n            <label for=\"wheelWidth\">Wheel Width:<\/label>\r\n            <input type=\"number\" id=\"wheelWidth\" step=\"0.1\" placeholder=\"Enter wheel width\">\r\n        <\/div>\r\n\r\n        <div class=\"input-group\">\r\n            <label for=\"centerDish\">Center Dish (Mounting Pad to Center):<\/label>\r\n            <input type=\"number\" id=\"centerDish\" step=\"0.1\" placeholder=\"Enter center dish measurement\">\r\n        <\/div>\r\n\r\n        <div class=\"input-group\">\r\n            <label for=\"backspacing\">Backspacing:<\/label>\r\n            <input type=\"number\" id=\"backspacing\" step=\"0.1\" placeholder=\"Enter backspacing measurement\">\r\n        <\/div>\r\n\r\n        <button class=\"calculate-btn\" onclick=\"calculateOffset()\">Calculate<\/button>\r\n\r\n        <div class=\"result\" id=\"result\">\r\n            <div class=\"result-item\" id=\"offsetResult\">Offset: --<\/div>\r\n            <div class=\"result-item\" id=\"backspacingResult\">Backspacing: --<\/div>\r\n            <div class=\"result-item\" id=\"dishResult\">Center Dish: --<\/div>\r\n        <\/div>\r\n\r\n        <div class=\"reference\">\r\n            Quick Reference:\r\n            \u2022 Positive offset: wheel mounting surface is closer to the outside\r\n            \u2022 Negative offset: wheel mounting surface is closer to the inside\r\n            \u2022 Zero offset: mounting surface aligns with wheel centerline\r\n        <\/div>\r\n\r\n        <button class=\"help-btn\" onclick=\"toggleHelp()\">Show\/Hide Help Guide<\/button>\r\n\r\n        <div class=\"help-section\" id=\"helpSection\">\r\n            <h2>Understanding Wheel Offset<\/h2>\r\n            <p>Wheel offset is the distance from the wheel's mounting surface to the centerline of the wheel. It's measured in either millimeters or inches.<\/p>\r\n            \r\n            <h3>Types of Offset:<\/h3>\r\n            <p>\u2022 Positive Offset: Mounting surface is toward the outside (front) of the wheel<\/p>\r\n            <p>\u2022 Negative Offset: Mounting surface is toward the inside (back) of the wheel<\/p>\r\n            <p>\u2022 Zero Offset: Mounting surface is even with the centerline<\/p>\r\n            \r\n            <h3>How to Measure:<\/h3>\r\n            <p>1. Wheel Width: Total width of the wheel from bead seat to bead seat<\/p>\r\n            <p>2. Center Dish: Distance from mounting pad to wheel's centerline<\/p>\r\n            <p>3. Backspacing: Distance from mounting pad to back edge of the wheel<\/p>\r\n            \r\n            <h3>Formula:<\/h3>\r\n            <p>Offset = Backspacing - (Wheel Width \u00f7 2)<\/p>\r\n        <\/div>\r\n    <\/div>\r\n\r\n    <script>\r\n        let currentUnit = 'mm';\r\n        const mmToInch = 25.4;\r\n\r\n        function setUnit(unit) {\r\n            currentUnit = unit;\r\n            document.getElementById('mmBtn').classList.toggle('active', unit === 'mm');\r\n            document.getElementById('inchBtn').classList.toggle('active', unit === 'inches');\r\n            \r\n            \/\/ Update placeholders\r\n            const widthInput = document.getElementById('wheelWidth');\r\n            const centerDishInput = document.getElementById('centerDish');\r\n            const backspacingInput = document.getElementById('backspacing');\r\n            \r\n            if (unit === 'mm') {\r\n                widthInput.placeholder = \"Enter wheel width (mm)\";\r\n                centerDishInput.placeholder = \"Enter center dish (mm)\";\r\n                backspacingInput.placeholder = \"Enter backspacing (mm)\";\r\n            } else {\r\n                widthInput.placeholder = \"Enter wheel width (inches)\";\r\n                centerDishInput.placeholder = \"Enter center dish (inches)\";\r\n                backspacingInput.placeholder = \"Enter backspacing (inches)\";\r\n            }\r\n            \r\n            \/\/ Clear existing values\r\n            clearInputs();\r\n        }\r\n\r\n        function clearInputs() {\r\n            document.getElementById('wheelWidth').value = '';\r\n            document.getElementById('centerDish').value = '';\r\n            document.getElementById('backspacing').value = '';\r\n            document.getElementById('offsetResult').innerHTML = 'Offset: --';\r\n            document.getElementById('backspacingResult').innerHTML = 'Backspacing: --';\r\n            document.getElementById('dishResult').innerHTML = 'Center Dish: --';\r\n        }\r\n\r\n        function calculateOffset() {\r\n            const wheelWidth = parseFloat(document.getElementById('wheelWidth').value);\r\n            const centerDish = parseFloat(document.getElementById('centerDish').value);\r\n            const backspacing = parseFloat(document.getElementById('backspacing').value);\r\n\r\n            if (!wheelWidth || (!centerDish && !backspacing)) {\r\n                alert('Please fill in at least wheel width and either center dish or backspacing');\r\n                return;\r\n            }\r\n\r\n            let offset, calculatedBackspacing, calculatedCenterDish;\r\n            const centerline = wheelWidth \/ 2;\r\n\r\n            if (!isNaN(backspacing)) {\r\n                \/\/ Calculate offset using backspacing\r\n                offset = backspacing - centerline;\r\n                calculatedCenterDish = centerline + offset;\r\n                calculatedBackspacing = backspacing;\r\n            } else if (!isNaN(centerDish)) {\r\n                \/\/ Calculate offset using center dish\r\n                offset = centerDish - centerline;\r\n                calculatedBackspacing = centerline + offset;\r\n                calculatedCenterDish = centerDish;\r\n            }\r\n\r\n            const unit = currentUnit === 'mm' ? 'mm' : 'inches';\r\n            \r\n            document.getElementById('offsetResult').innerHTML = \r\n                `Offset: ${offset.toFixed(2)} ${unit}`;\r\n            document.getElementById('backspacingResult').innerHTML = \r\n                `Backspacing: ${calculatedBackspacing.toFixed(2)} ${unit}`;\r\n            document.getElementById('dishResult').innerHTML = \r\n                `Center Dish: ${calculatedCenterDish.toFixed(2)} ${unit}`;\r\n        }\r\n\r\n        function toggleHelp() {\r\n            const helpSection = document.getElementById('helpSection');\r\n            helpSection.classList.toggle('active');\r\n        }\r\n\r\n        \/\/ Add event listeners for real-time validation\r\n        document.querySelectorAll('input[type=\"number\"]').forEach(input => {\r\n            input.addEventListener('input', function() {\r\n                if (this.value < 0) {\r\n                    this.value = '';\r\n                }\r\n            });\r\n        });\r\n    <\/script>\n<p>Ever tried swapping out your wheels, only to find they rub the fender, sit too far in the wheel well, or worse\u2014mess with your suspension geometry? Yeah\u2026 I\u2019ve been there. What seems like a simple upgrade can turn into a frustrating (and expensive) game of trial and error if you don&#8217;t get the wheel offset right.<\/p>\n<p>Now, if you&#8217;re driving something American\u2014like a lifted truck, a wide-body muscle car, or a full-size SUV\u2014fitment isn\u2019t just cosmetic. It\u2019s structural. Too much positive offset and you\u2019re eating into your inner clearance; too much negative offset and you\u2019re stressing your lugs or scraping your fenders. (Not to mention risking the alignment.)<\/p>\n<p>That\u2019s where a wheel offset calculator comes in clutch. These tools\u2014also called a rim offset tool or tire fitment calculator\u2014let you plug in your current specs, compare setups, and actually see how new wheels will fit before you spend hundreds or risk a return.<\/p>\n<p>In this guide, we\u2019ll break down how to use an offset calculator (especially for U.S. vehicles), what numbers actually matter\u2014like backspacing, hub-centric diameter, and lug pattern\u2014and how to avoid the common traps I\u2019ve seen too many people fall into.<\/p>\n<h2>Common Wheel Offset Mistakes to Avoid<\/h2>\n<p>If there\u2019s one thing I\u2019ve seen over and over in the DIY scene\u2014especially with trucks and muscle cars\u2014it\u2019s people choosing wheels based purely on looks. You get a sick rim from an aftermarket brand, bolt it onto your lifted F-150, and then\u2014bam\u2014caliper clash, tire rub, or worse, the whole thing sticks out three inches past the fender like a shopping cart wheel. Looks cool in a photo\u2026 until it eats your suspension kit.<\/p>\n<p>Offset misjudgment happens fast. I\u2019ve done it. You overlook poke calculation, don\u2019t account for the added width, or forget how a lift kit alters suspension angles. Next thing you know, you\u2019re buying spacers to \u201cfix\u201d the fitment, but now you\u2019ve introduced bolt-on stress that your hubs weren\u2019t designed for.<\/p>\n<p>And let\u2019s not even talk about discount tire shops that slap wheels on without checking offset or measurement units. What I\u2019ve found is: you\u2019ve got to do your homework. Use a proper rim offset calculator, double-check tire clearance, and don\u2019t assume that what fits on your buddy\u2019s Silverado will work on yours. Offset isn\u2019t one-size-fits-all\u2014it\u2019s precision or pain, no in-between<\/p>\n<h2>How the Wheel Offset Calculator Tool Works<\/h2>\n<p>Alright, so here\u2019s the thing\u2014wheel fitment math isn\u2019t fun, especially when you\u2019re staring at three different wheel specs and trying to guess what\u2019s going to rub or poke. That\u2019s why I always recommend using a wheel offset calculator before dropping cash on new wheels. It\u2019s not magic, but it sure feels like it when it saves you from scraping your wheel well or misaligning your axle geometry.<\/p>\n<p>Let\u2019s walk through it using a real-world example: say you\u2019ve got a Chevy Silverado 1500, bone stock, and you\u2019re looking at upgrading to 20&#215;10 wheels with a -24mm offset. You\u2019d plug in your OEM wheel specs\u2014width, offset, and tire size\u2014into the input fields, then enter the new specs you\u2019re considering. From there, the tool kicks out a side-by-side view with measurements in inches, showing how far your wheel will stick out (poke), how much backspacing you\u2019ll lose or gain, and whether your new setup clears the brake calipers or not.<\/p>\n<p>Some calculators even simulate this with a dynamic chart or a simple 3D visualization\u2014I\u2019ve seen a few decent ones in the better US wheel calculator apps. And while there\u2019s always a margin of error with suspension variables (especially if you\u2019ve got lift kits involved), what I\u2019ve found is: the closer you stick to that offset delta, the less likely you are to eat through your tires or need an alignment six months later.<\/p>\n<h2>What Is Wheel Offset? Understanding Positive, Negative &amp; Zero Offset<\/h2>\n<p>You ever see a Ford F-150 roll by with its wheels sticking way out past the fenders and think, &#8220;Something\u2019s off&#8221;? That\u2019s wheel offset in action\u2014more specifically, that\u2019s likely a case of negative offset. Now, whether you\u2019re upgrading a Jeep Wrangler for trail duty or throwing 20s on your Silverado, getting your wheel positioning right isn\u2019t just about looks\u2014it\u2019s about clearance, alignment, and safety.<\/p>\n<p>So, here\u2019s the breakdown:<\/p>\n<ul>\n<li>Positive offset means the mounting surface is closer to the front of the wheel. This keeps the wheels tucked inside the fender line, which is common on most OEM setups.<\/li>\n<li>Negative offset shifts that mounting surface inward, pushing the wheels outward\u2014great for a wider track width, but risky for your axle alignment if overdone.<\/li>\n<li>Zero offset? That\u2019s dead-center mounting. It\u2019s rare but can be useful in certain lift kit or off-road builds where equal distribution around the wheel hub is critical.<\/li>\n<\/ul>\n<p>What I\u2019ve found is\u2014especially with American trucks\u2014the wrong offset can throw off your tire clearance, rub your brake calipers, or even mess with your suspension geometry. Not to mention, it just feels wrong on the road.<\/p>\n<p>Next, let\u2019s look at how these offset choices actually play out when you compare stock vs. aftermarket setups side by side. It\u2019s more visual than you\u2019d think<\/p>\n<h2>Compatible Brands and Retailers in the U.S.<\/h2>\n<p>Once you&#8217;ve run your numbers through a wheel offset calculator, the next step is finding a place that actually uses that data right. And trust me\u2014not all retailers treat fitment equally.<\/p>\n<p>Tire Rack is still one of my go-to sources. Their system pulls from verified vehicle fitment databases, and they\u2019ve got a solid brand selector and bolt pattern match logic baked into the shopping experience. Same with Discount Tire\u2014especially their \u201cOffset Range\u201d filters, which are surprisingly good for avoiding those close-but-rubbing situations. (I\u2019ve caught a few near-misses thanks to that tool.)<\/p>\n<p>Summit Racing? Great for muscle builds or old-school trucks, but you\u2019ve got to know your specs going in. Their catalog\u2019s huge, but not as filter-rich. Fitment Industries, on the other hand, leans more into aftermarket brands and aggressive setups\u2014they\u2019ll even show you poke visuals and flush fitment examples pulled from real customer builds.<\/p>\n<p>And if you&#8217;re working with 4WheelParts, especially for a Jeep or Ram, what I\u2019ve found is their in-store staff actually uses offset calculators during consultations\u2014huge plus if you&#8217;re not ready to go full DIY.<\/p>\n<h2>When to Use a Spacer vs Change Offset<\/h2>\n<p>Here\u2019s the thing\u2014spacers can be a smart fix, or a fast-track to headaches, depending on how and why you&#8217;re using them. In my experience, they\u2019re best when you\u2019ve got a setup that\u2019s almost dialed\u2014say you upgraded your Ram 1500 with beefy aftermarket brakes, and suddenly your inner barrel&#8217;s kissing the caliper. That\u2019s a classic case where a bolt-on spacer (say, \u00bc\u201d to 1\u201d) can save the day without forcing a full wheel replacement.<\/p>\n<p>But\u2014big but\u2014don\u2019t treat spacers as a shortcut for poor fitment planning. Adding even a 1\u201d spacer effectively reduces your offset by 25mm. That changes scrub radius, affects steering feel, and stresses wheel bearings, especially on heavier trucks. I\u2019ve seen people chase offset correction with cheap spacers, then blow out hub-centric rings or mis-torque lugs because they didn\u2019t follow proper torque specs. (Happened to a guy I met at a Tennessee truck meet\u2014wobbly ride and all.)<\/p>\n<p>Also, check your local laws. California, for example, has a gray area on legal wheel spacers\u2014they\u2019re not banned, but your setup must meet DOT guidelines for width and tracking.<\/p>\n<p>So what\u2019s the rule? If you\u2019re adjusting a minor clearance issue\u2014spacer. If you\u2019re trying to fix a bad offset decision\u2014replace the wheels. That\u2019s what works.<\/p>\n<h2>Try the Wheel Offset Calculator Tool (Interactive CTA)<\/h2>\n<p>Alright\u2014this is the part where you stop guessing and actually see how your setup will work. Our interactive wheel offset calculator tool is embedded right below. It\u2019s mobile-friendly, fast, and built around real U.S. rim data. Whether you\u2019re dialing in a flush fitment on your Mustang or checking brake clearance on a leveled Silverado, the tool\u2019s got you covered.<\/p>\n<p>You\u2019ll plug in your current wheel and tire specs\u2014width, offset, diameter\u2014and compare them against your new setup. Then? Boom: you\u2019ll get poke depth, backspacing, and a clear fitment diagram that actually makes sense visually. It even adjusts for measurement units in inches (no more weird metric-only converters).<\/p>\n<p>Now, here\u2019s what I do\u2014after getting the results, I screenshot the layout or use the download results option. That way, I\u2019ve got it ready when I head to Tire Rack, Fitment Industries, or the forums. (Trust me, nothing kills a post faster than \u201cWill these fit?\u201d without numbers.)<\/p>\n<p>So go ahead\u2014use the wheel offset calculator, test your setup, and if it looks clean, share it in your favorite group. Bonus points if you tag your ride and drop those before\/after offset pics.<\/p>\n<p style=\"text-align: right\"><a href=\"https:\/\/donhit.com\/en\/\">DonHit<\/a><\/p>\n<h2>Why Accurate Offset Matters for U.S. Drivers<\/h2>\n<p>Here\u2019s what a lot of folks don\u2019t realize until it\u2019s too late: wheel offset isn\u2019t just a styling choice\u2014it\u2019s tied directly to safety, legality, and even your insurance coverage. I\u2019ve seen lifted trucks fail inspections in Texas because the tires poked out past the fender without proper mud flaps. In California, the CHP doesn&#8217;t mess around when it comes to tire protrusion laws\u2014if your tires extend beyond the body without coverage, you could face fines or worse.<\/p>\n<p>But it\u2019s not just about staying street legal. An incorrect offset can wreck suspension integrity, especially in heavier vehicles like Silverados or Ram 2500s. What I\u2019ve found is that too much negative offset shifts your center of gravity, stresses your wheel hub, and leads to early tire wear or even alignment issues after just a few thousand miles.<\/p>\n<p>Here\u2019s the kicker\u2014some insurance companies won\u2019t honor claims if your vehicle\u2019s running non-DOT-compliant wheels. I had a buddy in Georgia get denied after a minor fender bender because his offset wasn\u2019t within the manufacturer\u2019s safe spec range.<\/p>\n<p>Moral of the story? Don\u2019t just eyeball it. A proper wheel offset check can save you from legal trouble, mechanical headaches, and unexpected costs down the line.<\/p>\n<h2>Real Examples: U.S. Cars and Offset Calculations<\/h2>\n<p>Let\u2019s talk real-world setups\u2014because theory is one thing, but seeing actual offset results? That\u2019s where it clicks.<\/p>\n<p>Take a Jeep Wrangler JL running 35\u201d tires. Stock wheels sit at +44mm offset. When you switch to 17x9s with a -12mm offset, you&#8217;re pushing the wheel out almost two inches. The calculator showed a clear poke visual\u2014flush fitment, but now your tires stick out past the fender. Looks tough, sure, but you\u2019ll need wider flares or risk trouble in states with protrusion laws.<\/p>\n<p>Now, on the other end, I had a client with a 2020 Ford Mustang GT running a staggered setup\u201419&#215;9.5 in the front, 19&#215;10.5 in the rear. He thought he could just slap on aftermarket wheels with a +35 offset all around. The calculator flagged it instantly. Result? Rear tire bulge, wrong axle centering, and a nasty case of rubbing on hard turns. (We fixed it with +52 rear offset\u2014lesson learned.)<\/p>\n<p>And for the lifted guys\u2014Ram 1500 with a leveling kit and 20&#215;10 -24mm wheels? Before the offset calculator: aggressive poke, lift-induced rubbing. After tweaking: proper fitment diagram, no spacers needed, full clearance.<\/p>\n<p>What I\u2019ve found is, once you see the before vs. after laid out in the numbers, those \u201cclose-enough\u201d guesses suddenly don\u2019t feel close at all.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>&nbsp; Ever tried swapping out your wheels, only to find they rub the fender, sit too far in the wheel well, or worse\u2014mess with your suspension geometry? Yeah\u2026 I\u2019ve been there. What seems like a simple upgrade can turn into a frustrating (and expensive) game of trial and error if you don&#8217;t get the wheel [&#8230;]\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[184],"tags":[],"class_list":["post-1666","post","type-post","status-publish","format-standard","hentry","category-calculator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Wheel Offset Calculator - DonHit<\/title>\n<meta name=\"description\" content=\"A wheel offset calculator tool saves time and enhances precision when determining the correct offset for your vehicle.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Wheel Offset Calculator - DonHit\" \/>\n<meta property=\"og:description\" content=\"A wheel offset calculator tool saves time and enhances precision when determining the correct offset for your vehicle.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/\" \/>\n<meta property=\"og:site_name\" content=\"DonHit - World of Tools\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-15T07:00:05+00:00\" \/>\n<meta name=\"author\" content=\"DonHit\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DonHit\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Wheel Offset Calculator - DonHit","description":"A wheel offset calculator tool saves time and enhances precision when determining the correct offset for your vehicle.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/","og_locale":"en_US","og_type":"article","og_title":"Wheel Offset Calculator - DonHit","og_description":"A wheel offset calculator tool saves time and enhances precision when determining the correct offset for your vehicle.","og_url":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/","og_site_name":"DonHit - World of Tools","article_published_time":"2026-05-15T07:00:05+00:00","author":"DonHit","twitter_card":"summary_large_image","twitter_misc":{"Written by":"DonHit","Est. reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/#article","isPartOf":{"@id":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/"},"author":{"name":"DonHit","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"headline":"Wheel Offset Calculator","datePublished":"2026-05-15T07:00:05+00:00","mainEntityOfPage":{"@id":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/"},"wordCount":2002,"commentCount":0,"publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"articleSection":["Calculator"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/donhit.com\/en\/calculator\/wheel-offset\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/","url":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/","name":"Wheel Offset Calculator - DonHit","isPartOf":{"@id":"https:\/\/donhit.com\/en\/#website"},"datePublished":"2026-05-15T07:00:05+00:00","description":"A wheel offset calculator tool saves time and enhances precision when determining the correct offset for your vehicle.","breadcrumb":{"@id":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/donhit.com\/en\/calculator\/wheel-offset\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/donhit.com\/en\/calculator\/wheel-offset\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Trang ch\u1ee7","item":"https:\/\/donhit.com\/en\/"},{"@type":"ListItem","position":2,"name":"Calculator","item":"https:\/\/donhit.com\/en\/category\/calculator\/"},{"@type":"ListItem","position":3,"name":"Wheel Offset Calculator"}]},{"@type":"WebSite","@id":"https:\/\/donhit.com\/en\/#website","url":"https:\/\/donhit.com\/en\/","name":"DonHit - World of tools","description":"","publisher":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/donhit.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/0c6ff7dcd8ba4810c56a532f09c33148","name":"DonHit","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","contentUrl":"https:\/\/donhit.com\/en\/wp-content\/uploads\/2024\/11\/logo-donhit.webp","width":400,"height":267,"caption":"DonHit"},"logo":{"@id":"https:\/\/donhit.com\/en\/#\/schema\/person\/image\/"},"description":"DonHit is a website designed to provide useful tools for everyone. Its primary goal is to support and empower the community. All the tools available on the site are completely free to use.","sameAs":["https:\/\/donhit.com\/en"],"url":"https:\/\/donhit.com\/en\/author\/admin_don\/"}]}},"_links":{"self":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1666","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/comments?post=1666"}],"version-history":[{"count":11,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1666\/revisions"}],"predecessor-version":[{"id":3842,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/posts\/1666\/revisions\/3842"}],"wp:attachment":[{"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/media?parent=1666"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/categories?post=1666"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/donhit.com\/en\/wp-json\/wp\/v2\/tags?post=1666"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}