I've been searching for this all over the internet, but for most of the questions I viewed that answered in CSS, people just gave code without explaining them.
-fx-effect: dropshadow(gaussian, rgba(0, 0, 0, 0.3), 10, 0.5, 0.0, 0.0);
For this line of code for implementing a drop shadow in CSS, what do the variables mean?
From what I inferred, it means:
-fx-effect: dropshadow(blurType, color, radius, spread, offsetX, offsetY)
But in the actual DropShadow effect tag in FXML, there are 6 numeric variables instead of 4.
<DropShadow blurType="GAUSSIAN" color="#ee8c9e8f" height="151.47" offsetX="3.0" offsetY="3.0" radius="73.75" spread="0.5" width="145.53" />
How can I implement this effect with 8 parameters in CSS?