我使用了简单的php分页,但现在我必须在我的分页上添加一些风格。但我不知道如何在php变量中添加css样式。 这是我的代码:
**Procfile**
web: bundle exec puma -C ./config/puma.rb
**config.ru**
require_relative 'myapp'
run Sinatra::Application
**myapp.rb**
require 'sinatra'
require 'byebug'
get '/' do
message="oh, hello!"
byebug
message
end
**puma.rb**
workers 2
threads_count = 5
threads threads_count, threads_count
我想将样式添加到$ number变量。