I am working in a web company and we are going to make an A/B test on one of the the main web pages that will test 2 different designs. The A/B is going to examine 2 different design approaches: different icons, colors, scheme, etc and even slightly minor changes in the layout. the main changes are DESIGN (and I will change them in CSS).
Assuming I know how to run A/B test:
my question is: how do I handle the CSS files.
my main CSS is in a file called: generalStyles.css.
Do I nee to create a file that is called generalStyles_B.css
? Will it be a duplication of generalStyles.css
or will it be in addition to that file and just 'run over' the CSS rules that I am changing?
Duplicate will make it easy to use generalStyles_B if we decide to go gor the B option. but to maintain the code easily duplication seems to be wrong.
thanks, Alon