This is my solution, with CSS for two wings:
http://jsfiddle.net/0Lu4vspq/6/
#wings { border: solid 5px #333; width: 80px; position: relative; left: 155px; }
and
<div id="wings"></div>
Before and after your code.
UPDATE
You can dynamically edit CSS through PHP. You need a different value, but there are only two wings on the plane.
If the position is the same (or not, you can use two CSS codes for the right and right wing), you only need to find the point at which the beginning of the wing and its length begin.
At this point, the CSS change at these two points:
#wings { border: solid 5px
SECOND UPDATE
If you want something more like a wing, CSS would be:
#wings_down { left: 155px; width: 80px; position: relative; height: 50px; -webkit-transform: skew(20deg); -moz-transform: skew(20deg); -o-transform: skew(20deg); transform: skew(20deg); background: #333; } #wings_up { left: 155px; width: 80px; position: relative; height: 50px; -webkit-transform: skew(-20deg); -moz-transform: skew(-20deg); -o-transform: skew(-20deg); transform: skew(-20deg); background: #333; }
http://jsfiddle.net/0Lu4vspq/17/
Note. I removed border: solid 5px #333; because it is redundant.
source share