diff --git a/pcbnew/dialogs/dialog_footprint_checker.cpp b/pcbnew/dialogs/dialog_footprint_checker.cpp
index 93b681f3c8..58cb4882c7 100644
--- a/pcbnew/dialogs/dialog_footprint_checker.cpp
+++ b/pcbnew/dialogs/dialog_footprint_checker.cpp
@@ -188,6 +188,12 @@ void DIALOG_FOOTPRINT_CHECKER::runChecks()
                 } );
     }
 
+    footprint->CheckClippedSilk(
+            [&]( BOARD_ITEM* aItemA, BOARD_ITEM* aItemB, const VECTOR2I& aPt )
+            {
+                errorHandler( aItemA, aItemB, nullptr, DRCE_SILK_CLEARANCE, wxEmptyString, aPt );
+            } );
+
     m_checksRun = true;
 
     m_markersTreeModel->Update( m_markersProvider, m_severities );
diff --git a/pcbnew/footprint.cpp b/pcbnew/footprint.cpp
index 1be21083de..0e8559352a 100644
--- a/pcbnew/footprint.cpp
+++ b/pcbnew/footprint.cpp
@@ -3491,6 +3491,44 @@ void FOOTPRINT::CheckNetTiePadGroups( const std::function<void( const wxString&
 }
 
 
+void FOOTPRINT::CheckClippedSilk( const std::function<void( BOARD_ITEM* aItemA,
+                                                            BOARD_ITEM* aItemB,
+                                                            const VECTOR2I& aPt )>& aErrorHandler )
+{
+    auto checkColliding =
+            [&]( BOARD_ITEM* item, BOARD_ITEM* other )
+            {
+                for( PCB_LAYER_ID silk : { F_SilkS, B_SilkS } )
+                {
+                    PCB_LAYER_ID mask = silk == F_SilkS ? F_Mask : B_Mask;
+
+                    if( !item->IsOnLayer( silk ) || !other->IsOnLayer( mask ) )
+                        continue;
+
+                    std::shared_ptr<SHAPE> itemShape = item->GetEffectiveShape( silk );
+                    std::shared_ptr<SHAPE> otherShape = other->GetEffectiveShape( mask );
+                    int                    actual;
+                    VECTOR2I               pos;
+
+                    if( itemShape->Collide( otherShape.get(), 0, &actual, &pos ) )
+                        aErrorHandler( item, other, pos );
+                }
+            };
+
+    for( BOARD_ITEM* item : m_drawings )
+    {
+        for( BOARD_ITEM* other : m_drawings )
+        {
+            if( other != item )
+                checkColliding( item, other );
+        }
+
+        for( PAD* pad : m_pads )
+            checkColliding( item, pad );
+    }
+}
+
+
 void FOOTPRINT::swapData( BOARD_ITEM* aImage )
 {
     wxASSERT( aImage->Type() == PCB_FOOTPRINT_T );
diff --git a/pcbnew/footprint.h b/pcbnew/footprint.h
index 824577c960..b3db53906a 100644
--- a/pcbnew/footprint.h
+++ b/pcbnew/footprint.h
@@ -498,6 +498,9 @@ public:
      */
     void CheckNetTiePadGroups( const std::function<void( const wxString& )>& aErrorHandler );
 
+    void CheckClippedSilk( const std::function<void( BOARD_ITEM* aItemA,
+                                                     BOARD_ITEM* aItemB,
+                                                     const VECTOR2I& aPt )>& aErrorHandler );
     /**
      * Cache the pads that are allowed to connect to each other in the footprint.
      */