diff --git a/index.html b/index.html index 0700e28..867cae3 100644 --- a/index.html +++ b/index.html @@ -965,17 +965,17 @@

Details of touch-action values

Disabling some default touch behaviors may allow user agents to respond to other behaviors more quickly. For example, with auto user agents typically add 300ms of delay before click to allow for double-tap gestures to be handled. In these cases, explicitly setting touch-action: none or touch-action: manipulation will remove this delay. Note that the methods for determining a tap or double-tap gesture are out of scope for this specification.
-
+
 <div style="touch-action: none;">
     This element receives pointer events for all touches.
 </div>
 
-
+
 <div style="touch-action: pan-x;">
     This element receives pointer events when not panning in the horizontal direction.
 </div>
 
-
+
 <div style="overflow: auto;">
     <div style="touch-action: none;">
         This element receives pointer events for all touches.
@@ -985,7 +985,7 @@ 

Details of touch-action values

</div> </div>
-
+
 <div style="overflow: auto;">
     <div style="touch-action: pan-y;">
         <div style="touch-action: pan-x;">
@@ -997,7 +997,7 @@ 

Details of touch-action values

</div> </div>
-
+
 <div style="overflow: auto;">
     <div style="touch-action: pan-y pan-left;">
         <div style="touch-action: pan-x;">