﻿<?xml version="1.0" encoding="utf-8"?>
<snippet name="Change Marquee Selection Color" description="Change the marquee selection color using the ::selection property in CSS" preview="code" type="block">
<insertText location="beforeSelection">
<![CDATA[/* Add this to your CSS file*/


/*Mozilla based browsers */
::-moz-selection {
       background-color: #1ABC9C;
       color: #FFFFFF;
}

/* Works in Safari */
::selection {
       background-color: #1ABC9C;
       color: #FFFFFF;
}]]>
</insertText>
<insertText location="afterSelection"><![CDATA[]]>
</insertText>
</snippet>
