I met a problem when I wanted to get style attribute of element.
$styleValue = $this->getAttribute("//ul@style");
But result of var_dump($styleValue) is
string(1) ";"
But I expected "margin-left: -2432px;" So, where am I wrong? How can I get style attribute of element?
ulelements all have the same style attribute?