//--------------------------------------
//               PowerUI
//
//        For documentation or 
//    if you have any issues, visit
//        powerUI.kulestar.com
//
//    Copyright  2013 Kulestar Ltd
//          www.kulestar.com
//--------------------------------------

using System;


namespace Css{
	
	/// <summary>
	/// Differing values for background-clip. Mainly used to clip images to text.
	/// </summary>
	
	public enum BackgroundClipping{
		
		BorderBox,
		Text,
		PaddingBox,
		ContentBox
		
	}
	
}



