91³Ô¹ÏÍø

Watch CBS News

Tip-over TVs and furniture have killed 450 children since 2000

As millions of Americans get ready to watch the Super Bowl on home screens amid the coronavirus pandemic, safety advocates are urging parents to protect their kids by anchoring TVs to the wall before the big game. That's because every 43 minutes, on average, a child is treated in an emergency-room visit due to falling televisions or furniture. 

Between 2000 and 2019, 451 children under 17 were killed by furniture and TVs tipping over and crushing them, according to a recently released  by U.S. Consumer Product Safety Commission. It's a message that Brian Dawkins, a recent football  inductee and former player for the Philadelphia Eagles, is helping the agency convey after a frightening incident that began with a loud crash in his four-year-old daughter's room.

"We had a dresser drawer that was too tall to house the TV on it, I know now. What my daughter did, she pulled out the drawers one by one, [and] began to climb up to get something off the top," Dawkins said in a public service announcement  on social media by CPSC. 

Alarmed by the noise, Dawkins and his wife ran to their daughter's room to find her under the toppled furniture. "The TV was on the other side of the bed, so she didn't get the brunt of the whole drawer on her," said Dawkins, who described his daughter as more scared than hurt. 

"Had that bed not been there, we're having a different conversation," he added.

The potential for far worse outcomes is illustrated in the CPSC data. From 2017 through 2019, an average of more than 11,000 children per year were treated in hospital ERs for injuries related to tip-over incidents, according to CPSC. An overwhelming majority, or 79%, of the fatalities were kids younger than six, and 75% of the deaths involved a TV. 

The problem has led to numerous product recalls —  in the month of alone — and more than a dozen last year, including the March 2020 recall by Ikea of 820,000 chests sold nationwide. Two months earlier, the Swedish furniture retailer agreed to pay $46 million to the parents of a California toddler killed by one of its dressers in 2017. More than 17 million Ikea Malm and other Ikea chests and dressers were recalled in 2016 and 2017, according to the company's . 

Many parents and caregivers do not anchor furniture and TVs to the wall because they view it as unnecessary so long as they keep an eye on their kids, according to a 2020 CPSC . That's unfortunately not always the case. 

"These tip-overs happen so fast — it's literally in the blink of an eye, often with a parent close by," Robert Adler, the agency's acting chairman, recently  in a statement. 

by on

The good news is that the risk isn't hard to alleviate, including the use of easy-to-install, affordable anti-tip kits (see CPSC below.)

Or, as Dawkins put it in his PSA: "There's things that we can do ahead of time to prevent a lot of things from happening. You know better now. In the midst of your excitement, with your new TV and your new piece of furniture, as soon as you get it — anchor it!". 

To protect children from a tip-over incident, CPSC urges parents and caregivers to follow simple safety steps: 

  • Anchor TVs and furniture, such as bookcases and dressers, securely to the wall. Always place TVs on a sturdy, low base, and push the TV back as far as possible, particularly if anchoring isn't possible.
  • Avoid displaying or storing items, such as toys and remotes, in places where kids might be tempted to climb up to reach for them.
  • Store heavier items on lower shelves or in lower drawers.
  • If purchasing a new TV, consider recycling older ones not currently in use. If moving the older TV to another room, be sure it is anchored to the wall properly.
  • Keep TV and cable cords out of reach of children.
  • Even in rooms with TVs and furniture anchored, adult supervision is still recommended.
View CBS News In
CBS News App Open
Chrome Safari Continue
const link = doc.createElement('link'); link.rel = 'stylesheet'; link.href = '/fly/fly/bundles/cbsnewscontent/css/cmp-banner.min.css?v=50747257b890e014813016b79ece0fb2'; doc.head.appendChild(link); doc.body.innerHTML = CONSENT_MESSAGE; } else { el.insertAdjacentHTML('afterend', CONSENT_MESSAGE); } }); } function hidePrivacyMessage() { // Remove from the main document document.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); // Remove from inside any iframes document.querySelectorAll('iframe').forEach(iframe => { const doc = iframe.contentDocument || iframe.contentWindow.document; doc.querySelectorAll(`.${CONSENT_MESSAGE_CLASS}`).forEach(el => el.remove()); }); } function activateGatedScripts() { // Handle both new format (cmp-gated-script) and old OneTrust/Ketch format (optanon-category-4) const gatedScripts = Array.from(document.querySelectorAll('script.cmp-gated-script, script.optanon-category-4')); // Activate scripts sequentially with a small delay to avoid timing issues let delay = 0; gatedScripts.forEach(function(placeholder, index) { setTimeout(function() { // Skip if already processed if (placeholder.hasAttribute('data-cmp-processed')) { return; } placeholder.setAttribute('data-cmp-processed', 'true'); const newScript = document.createElement('script'); newScript.type = 'text/javascript'; // Try new format first (data-cmp-src), then fall back to old format (data-src) const src = placeholder.getAttribute('data-cmp-src') || placeholder.getAttribute('data-src'); if (src) { newScript.src = src; } else if (placeholder.textContent) { // Inline script - just copy the content newScript.textContent = placeholder.textContent; } // Handle new format attributes (data-cmp-attrs) - for both inline and external scripts const attrs = placeholder.getAttribute('data-cmp-attrs'); if (attrs) { const tempDiv = document.createElement('div'); tempDiv.innerHTML = '
<\/div>'; const tempAttrs = tempDiv.firstChild.attributes; for (let i = 0; i < tempAttrs.length; i++) { // For external scripts, allow defer/async. For inline scripts, skip them (not valid) if (src || (tempAttrs[i].name !== 'async' && tempAttrs[i].name !== 'defer')) { newScript.setAttribute(tempAttrs[i].name, tempAttrs[i].value); } } } // Copy other attributes from old OneTrust format for (let i = 0; i < placeholder.attributes.length; i++) { const attr = placeholder.attributes[i]; // Skip attributes we've already handled or don't want to copy if (!['class', 'data-src', 'data-type', 'data-cmp-src', 'data-cmp-attrs', 'data-cmp-processed', 'type', 'async', 'defer', 'src'].includes(attr.name)) { newScript.setAttribute(attr.name, attr.value); } } placeholder.parentNode.replaceChild(newScript, placeholder); // If external script, manually trigger window.onload handlers after it loads // This handles widgets that use window.onload for initialization if (src) { newScript.addEventListener('load', function() { // If page already loaded and script set a new onload handler, trigger it if (document.readyState === 'complete' && window.onload) { const originalOnload = window.onload; window.onload = null; // Clear temporarily to prevent loops originalOnload(); // Execute the handler } }); } }, delay); delay += 500; // 500ms delay between each script to allow full loading }); } cbsoptanon.onScriptsReady(function(cmp) { cmp.ot.targetingAllowed(function(allowed) { if (!allowed) { showPrivacyMessage(); } else { activateGatedScripts(); } }); cmp.ot.awaitInitialConsent(function(consent_model) { cmp.ot.addOnConsentChangedHandler(function() { cmp.ot.targetingAllowed(function(allowed) { if (allowed) { hidePrivacyMessage(); activateGatedScripts(); } else { showPrivacyMessage(); } }); }); }); });