diff --git a/src/Html/Column.php b/src/Html/Column.php
index 34933d5..724e3f7 100644
--- a/src/Html/Column.php
+++ b/src/Html/Column.php
@@ -88,6 +88,18 @@ public function title(string $value): static
return $this;
}
+ /**
+ * Set column style.
+ *
+ * @return $this
+ */
+ public function style(string $css): static
+ {
+ $this->attributes['style'] = $css;
+
+ return $this;
+ }
+
/**
* Create a computed column that is not searchable/orderable.
*/