Bones of the Skull - Structure - Fractures (2024)

Written by Ali Sparke

Last updated February 5, 2023 • 69 Revisions•

The skull is a bony structure that supports the face and forms a protective cavity for the brain. It is comprised of many bones, which are formed by intramembranous ossification, and joined by sutures (fibrous joints).

The bones of the skull can be considered as two groups: those of the cranium (which consist of the cranial roof and cranial base) and those of the face.

In this article, we shall look at the anatomy of the bones of the skull – their orientation, articulations, and clinical relevance.

Premium Feature

3D Model

Premium Feature

Access this feature with premium.

Go Premium

Cranium

The cranium (also known as the neurocranium) is formed by the superior aspect of the skull. It encloses and protects the brain, meninges, and cerebral vasculature.

Anatomically, the cranium can be subdivided into aroofand a base:

  • Cranial roof – comprised of the frontal, occipital and two parietal bones. It is also known as the calvarium.
  • Cranial base – comprised of the frontal, sphenoid, ethmoid, occipital, parietal, and temporal bones. These bones articulate with the 1st cervical vertebra (atlas), the facial bones, and the mandible (jaw).

Fig 1
Bones of the calvarium and cranial base.

Clinical Relevance

Cranial Fractures

Fractures of the cranium typically arise from blunt force or penetrating trauma. When considering cranial fractures, one area of clinical importance is the pterion – a H-shaped junction between the temporal, parietal, frontal, and sphenoid bones.

The pterion overlies the middle meningeal artery, and fractures in this area may injury the vessel. Blood can accumulate between the skull and the dura mater, forming an extradural haematoma.

Fig 2
Lateral view of the skull, showing the path of the meningeal arteries. Note the pterion, a weak point of the skull, where the anterior middle meningeal artery is at risk of damage.

Face

The facial skeleton (also known as the viscerocranium) supports the soft tissues of the face.

It consists of 14 bones, which fuse to house the orbits of the eyes, the nasal and oral cavities, and the sinuses. The frontal bone, typically a bone of the calvaria, is sometimes included as part of the facial skeleton.

The facial bones are:

  • Zygomatic (2) – forms the cheek bones of the face and articulates with the frontal, sphenoid, temporal and maxilla bones.
  • Lacrimal (2) – the smallest bones of the face. They form part of the medial wall of the orbit.
  • Nasal (2) – two slender bones that are located at the bridge of the nose.
  • Inferior nasal conchae (2) – located within the nasal cavity, these bones increase the surface area of the nasal cavity, thus increasing the amount of inspired air that can come into contact with the cavity walls.
  • Palatine(2)– situated at the rear of oral cavity and forms part of the hard palate.
  • Maxilla (2) – comprises part of theupper jaw and hard palate.
  • Vomer – forms the posterior aspect of the nasal septum.
  • Mandible (jaw) – articulates with the base of the cranium at the temporomandibular joint (TMJ).

Fig 3
Anterior view of the face, showing some of the bones of the nasal skeleton. The vomer, palatine and inferior conchae bones lie deep within the face.

Clinical Relevance

Facial Fractures

Fractures of the facial skeletonare relatively common and most frequently result from road traffic collisions, fist fights, and falls.

The four most common facial fracture types are:

  • Nasal fracture – the most common facial fracture, due to the prominent position of the nasal bones at the bridge of the nose. There is often significant soft tissue swelling and associated epistaxis.
  • Maxillary fracture – associated with high-energy trauma. Fractures affecting of maxillary bones are classified using the Le Fort classification, ranging from 1 to 3.
  • Mandibular fracture – often bilateral occurring directly at the side of trauma, and indirectly at the contralateral side due to transmitted forces. Clinical features include pain at fracture site and misalignment of the teeth (malocclusion)
  • Zygomatic arch fracture – associated with trauma to the side of the face. Displaced fractures can damage the nearby infraorbital nerve, leading to ipsilateral paraesthesia of the check, nose, and lip.

Adobe Stock, Licensed to TeachMeSeries Ltd

Fig 4
3D reconstruction of a comminuted nasal bone fracture.

Sutures of the Skull

Sutures are a type of fibrous joint that are unique to the skull. They are immovable and fuse completely around the age of 20.

These joints are important in the context of trauma, as they represent points of potential weakness in the skull. The main sutures in the adult skull are:

  • Coronal suture – fuses the frontal bone with the two parietal bones.
  • Sagittal suture – fuses both parietal bones to each other.
  • Lambdoid suture – fuses the occipital bone to the two parietal bones.

In neonates, the incompletely fused suture joints give rise to membranous gaps between the bones, known as fontanelles. The two major fontanelles are:

  • Frontal fontanelle – located at the junction of the coronal and sagittal sutures
  • Occipital fontanelle – located at the junction of the sagittal and lambdoid sutures

Fig 5
The major fontanelles and sutures of the skull

Do you think you’re ready? Take the quiz below

Premium Feature

Quiz

Bones of the Skull

Question 1 of 3

Submitting...

Skip

Next

Rate question:

You scored

0%

Skipped: 0/3

Make sure you're ready, with 6 more questions available

Go Premium

'); }); } jQuery('#submitAnswer').on('click', function(e) { e.preventDefault(); if(jQuery(this).hasClass('continue')) { jQuery(this).removeClass('continue'); jQuery('html,body').animate({scrollTop: jQuery('#quiz').offset().top}, 250); if(currentQuestion < quizQuestions.length) { nextQuizQuestion(); } else { showResults(); } return; } if(jQuery('input[name="quizAnswers"]:checked').length == 0) { jQuery('#questionAnswers').prepend('

Please select an answer

'); return; } jQuery('#questionAnswers .alert').remove(); jQuery('#quizButtons').addClass('d-none'); jQuery('#quizLoading').removeClass('d-none'); jQuery.post(ajaxurl, { action: 'log_quiz_answer', id: quizQuestions[currentQuestion - 1].question_id, answer: jQuery('input[name="quizAnswers"]:checked').val(), type: 'article' }, function(data) { if(data.correct) correctQuestions++; jQuery('#questionAnswers').prop('disabled', true); jQuery('#quizLoading').addClass('d-none'); jQuery('#skipQuestion').addClass('d-none'); jQuery('#quizButtons').removeClass('d-none'); jQuery('#submitAnswer').addClass('continue'); let total = 0; for (i = 0; i < data.counts.length; i++) total += data.counts[i]; jQuery('#questionAnswers > div').each(function(i) { let correct = false; if(jQuery(this).find('input').val() == data.correctAnswer) correct = true; let percentage = (data.counts[i] / total) * 100; if(jQuery(this).find('input').is(':checked')) jQuery(this).append(''); else if(correct) { jQuery(this).append(''); } jQuery(this).append('

' + Math.round(percentage) + '% Answered ' + (correct ? 'Correctly' : 'Incorrectly') + '

'); }); let explanation = ''; explanation += '' + Math.round((data.counts[data.correctAnswer - 1] / total) * 100) + '% of users answered correctly.'; if (data.explanation.length > 0) explanation += '

' + data.explanation + '

'; jQuery('#questionAnswers').append('

' + explanation + '

'); if(currentQuestion >= quizQuestions.length) { jQuery('#submitAnswer').text('Finish'); } }, 'json'); }); function showResults() { jQuery('#quizQuestionsArea').addClass('d-none'); jQuery('#quizResultsArea').removeClass('d-none'); let score = Math.round((correctQuestions / currentQuestion) * 100); jQuery('#quizResult').text(score + '%'); jQuery('#skippedQuestions').text(skippedQuestions); } jQuery('#skipQuestion').on('click', function(e) { e.preventDefault(); skippedQuestions++; jQuery('html,body').animate({scrollTop: jQuery('#quiz').offset().top}, 250); if(currentQuestion < quizQuestions.length) { nextQuizQuestion(); } else { showResults(); } }); jQuery('#like-question').on('click', function(e) { e.preventDefault(); jQuery(this).removeClass('btn-light').addClass('btn-primary'); jQuery.post(ajaxurl, { action: 'like_quiz_question', id: quizQuestions[currentQuestion - 1].question_id }); }); jQuery('#report-question').on('click', function(e) { e.preventDefault(); jQuery(this).removeClass('btn-light').addClass('btn-danger'); jQuery.post(ajaxurl, { action: 'dislike_quiz_question', id: quizQuestions[currentQuestion - 1].question_id }); });

Print Article

Rate This Article

Recommended Reading

This website uses cookies.

We use cookies to improve your experience on our site and to show you relevant advertising. To find out more, read our privacy policy.

Bones of the Skull - Structure - Fractures (2024)
Top Articles
Ups Store Locations Closest To Me
Okta Pricing: Which Pricing Plan to Choose? [2024]
Dayton Overdrive
Authentication Portal Pvusd
Www.craigslist.com Springfield Mo
New Stores Coming To Canton Ohio 2022
Jobs Hiring Start Tomorrow
Chubbs Canton Il
Teenbeautyfitness
James Cameron And Getting Trapped Inside Your Most Successful Creation
Estragon South End
Craigslist Cars For Sale By Owner Oklahoma City
Myjohnshopkins Mychart
Karen Canelon Only
Craigslist Boats Rochester
When Is Hobby Lobby Opening In Olean Ny
Trizzle Aarp
1v1 lol unblocked Game- Play Unblocked Game Online for Free!
How Much Is Cvs Sports Physical
Pdinfoweb
G4 Vore
Bayada Bucks Catalog 2023
Best 43-inch TVs in 2024: Tested and rated
Haverhill, MA Obituaries | Driscoll Funeral Home and Cremation Service
Israel Tripadvisor Forum
Apple iPhone SE 2nd Gen (2020) 128GB 4G (Very Good- Pre-Owned)
9132976760
[TOP 18] Massage near you in Glan-y-Llyn - Find the best massage place for you!
Filmy4Wap Xyz.com 2022
Hatcher Funeral Home Aiken Sc
Sems Broward County
Lily Spa Roanoke Rapids Reviews
Hmnu Stocktwits
Home Theater and Home Theater Systems at Crutchfield.com
Simple Simon's Pizza Lone Jack Menu
Hingham Police Scanner Wicked Local
Längen umrechnen • m in mm, km in cm
CareCredit Lawsuit - Illegal Credit Card Charges And Fees
Lockstraps Net Worth
Upc 044376295592
South Carolina Craigslist Motorcycles
Joe Aloi Beaver Pa
Payback Bato
Cetaphil Samples For Providers
Po Box 6726 Portland Or 97228
Dimensional Doors Mod (1.20.1, 1.19.4) - Pocket Dimensions
Publix Coral Way And 147
Six Broadway Wiki
Trivago Anaheim California
Kaiju Universe: Best Monster Tier List (January 2024) - Item Level Gaming
8X10 Meters To Square Meters
Clarakitty 2022
Latest Posts
Article information

Author: Mr. See Jast

Last Updated:

Views: 5786

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Mr. See Jast

Birthday: 1999-07-30

Address: 8409 Megan Mountain, New Mathew, MT 44997-8193

Phone: +5023589614038

Job: Chief Executive

Hobby: Leather crafting, Flag Football, Candle making, Flying, Poi, Gunsmithing, Swimming

Introduction: My name is Mr. See Jast, I am a open, jolly, gorgeous, courageous, inexpensive, friendly, homely person who loves writing and wants to share my knowledge and understanding with you.